From fec3fe9605cab5433653111153cb77508aec485b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 8 Oct 2017 14:03:37 +0200 Subject: [PATCH] Fix db migration --- gajim/common/optparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/common/optparser.py b/gajim/common/optparser.py index dd2a2baa4..4afe62762 100644 --- a/gajim/common/optparser.py +++ b/gajim/common/optparser.py @@ -240,7 +240,7 @@ class OptionsParser: self.update_config_to_016104() if old < [0, 16, 10, 5] and new >= [0, 16, 10, 5]: self.update_config_to_016105() - if old < [0, 16, 11, 0] and new >= [0, 16, 11, 1]: + if old < [0, 16, 11, 1] and new >= [0, 16, 11, 1]: self.update_config_to_016111() app.logger.init_vars()