From 941d3121ebb0a47eed021f5bf98b0938c4df08e7 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 6 Dec 2024 12:49:00 +0100 Subject: [PATCH] Fix comment grammar --- src/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n.py b/src/i18n.py index 4557fb758..f1d6dc7cf 100644 --- a/src/i18n.py +++ b/src/i18n.py @@ -111,7 +111,7 @@ def getLocalePath(name, localeName, extension): if name != 'supybot': base = getPluginDir(name) else: - from . import ansi # Any Supybot plugin could fit + from . import ansi # Any Supybot module works base = ansi.__file__[0:-len('ansi.pyc')] directory = os.path.join(base, 'locales') return '%s/%s.%s' % (directory, localeName, extension)