Skip to content

Commit

Permalink
Release 4.2.2 with a logging bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Feb 16, 2024
1 parent 8943b6c commit 134118d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 4.2.2 - 2024-02-16

* Fix a Python error when logging

## 4.2.1 - 2024-02-15

* New option to Add checkbox to choose single WMS layer loading, contribution from @ghtmtt
Expand Down
4 changes: 3 additions & 1 deletion lizmap/plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ def current_plugin_needs_update(self) -> Optional[bool]:
LOGGER.warning(
"Version checker : running a higher version than on plugins.qgis.org : "
"current {current} >= latest {latest}".format(
current='.'.join(current_version), latest='.'.join(latest_version))
current='.'.join([str(i) for i in current_version]),
latest='.'.join([str(i) for i in latest_version])
)
)
return False

Expand Down

0 comments on commit 134118d

Please sign in to comment.