Skip to content

Commit

Permalink
Fix previous commit about logging in transifex (#261)
Browse files Browse the repository at this point in the history
* Fix previous commit about logging in transifex

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
Gustry and pre-commit-ci[bot] authored Dec 18, 2023
1 parent 942832d commit bbbb5f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion qgispluginci/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 1 addition & 3 deletions qgispluginci/translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ def pull(self):
existing_langs.append(lang)
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}"
)
logger.debug(f"Downloading translation file: {ts_file}")
self.tx_client.get_translation(
language_code=lang,
path_to_output_file=ts_file,
Expand Down

0 comments on commit bbbb5f1

Please sign in to comment.