Tue, 28 Jun 2022 08:21:05 +0200
Fixed a bug causing translations not being loaded.
.hgignore | file | annotate | diff | comparison | revisions | |
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPyLint.py | file | annotate | diff | comparison | revisions | |
PluginPyLint.zip | file | annotate | diff | comparison | revisions |
--- a/.hgignore Mon Jun 27 17:23:51 2022 +0200 +++ b/.hgignore Tue Jun 28 08:21:05 2022 +0200 @@ -1,6 +1,7 @@ glob:.eric7project glob:.eric6project glob:.ropeproject +glob:.jedi glob:.directory glob:**.pyc glob:**.orig
--- a/ChangeLog Mon Jun 27 17:23:51 2022 +0200 +++ b/ChangeLog Tue Jun 28 08:21:05 2022 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 10.0.1: +- bug fixes + Version 10.0.0: - first release of the eric7 variant
--- a/PluginPyLint.py Mon Jun 27 17:23:51 2022 +0200 +++ b/PluginPyLint.py Tue Jun 28 08:21:05 2022 +0200 @@ -30,7 +30,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "10.0.0" +version = "10.0.1" className = "PyLintPlugin" packageName = "PyLintInterface" shortDescription = "Show the PyLint dialogs." @@ -425,7 +425,7 @@ loc = self.__ui.getLocale() if loc and loc != "C": locale_dir = os.path.join(os.path.dirname(__file__), - "PyLint", "i18n") + "PyLintInterface", "i18n") translation = "pylint_{0}".format(loc) translator = QTranslator(None) loaded = translator.load(translation, locale_dir)