Skip to content
Snippets Groups Projects
Commit 2b7358af authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix version check

parent 178f0ca5
No related branches found
No related tags found
No related merge requests found
......@@ -70,13 +70,12 @@ except Exception as e:
try:
import axolotl
if axolotl.__version__ < "0.1.35":
ERROR_MSG = AXOLOTL_MISSING
except Exception as e:
log.error(e)
ERROR_MSG = AXOLOTL_MISSING
if gajim.config.get('version') < "0.16.5":
ver = gajim.config.get('version')
if ver[0:6] != '0.16.5':
ERROR_MSG = GAJIM_VERSION
# pylint: disable=no-init
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment