From a8ef16727f563e7ff01f1450a9024717f20a46c9 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Tue, 27 Sep 2011 21:42:44 +0100 Subject: [PATCH] fix version comparison --- client/djrandom_client/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/djrandom_client/utils.py b/client/djrandom_client/utils.py index f1f09e8..cced8cc 100644 --- a/client/djrandom_client/utils.py +++ b/client/djrandom_client/utils.py @@ -77,6 +77,6 @@ def check_version(): last_version_t = _split_version_string(match.group(1)) cur_version_t = _split_version_string(version.VERSION) - return cur_version_t <= last_version_t + return cur_version_t < last_version_t -- GitLab