From 715824932e91d80d694cfea73184c2721dd97e8d Mon Sep 17 00:00:00 2001 From: lovetox Date: Mon, 9 May 2022 12:11:39 +0200 Subject: [PATCH] [translations] Fix version attr access --- plugins_translations/plugins_translations.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins_translations/plugins_translations.py b/plugins_translations/plugins_translations.py index 55f57e3..a8e0c14 100644 --- a/plugins_translations/plugins_translations.py +++ b/plugins_translations/plugins_translations.py @@ -22,7 +22,8 @@ class PluginsTranslationsPlugin(GajimPlugin): self.locale_dir = Path(configpaths.get('PLUGINS_USER')) / 'locale' def activate(self): - if self.config['last_version'] == self.version: + current_version = str(self.manifest.version) + if self.config['last_version'] == current_version: return files = glob(self.__path__ + '/*.mo') @@ -40,7 +41,7 @@ class PluginsTranslationsPlugin(GajimPlugin): shutil.copy2(os.path.join(self.__path__, '%s.mo' % locale), str(dst)) - self.config['last_version'] = self.version + self.config['last_version'] = current_version def _remove_translations(self): log.info('Removing old translations...')