diff --git a/qgispluginci/parameters.py b/qgispluginci/parameters.py index e9e98455..212a276f 100644 --- a/qgispluginci/parameters.py +++ b/qgispluginci/parameters.py @@ -250,7 +250,7 @@ def validate_args(args: Namespace): - the value of `release_version` matches no supported pattern. In any case, warn the user if the value of `release_version` doesn't match the semver pattern. """ - if not args.release_version: + if not hasattr(args, 'release_version') or not args.release_version: return patterns = Parameters.get_release_version_patterns() diff --git a/qgispluginci/translation.py b/qgispluginci/translation.py index 80c123dd..16206432 100644 --- a/qgispluginci/translation.py +++ b/qgispluginci/translation.py @@ -139,7 +139,7 @@ def pull(self): for lang in existing_langs: ts_file = f"{self.parameters.plugin_path}/i18n/{self.parameters.transifex_resource}_{lang}.ts" logger.debug( - f"Downloading translation file: {ts_file}, resource: {self.config.resource_slug}" + f"Downloading translation file: {ts_file}" ) self.tx_client.get_translation( language_code=lang,