diff --git a/client/djrandom_client/utils.py b/client/djrandom_client/utils.py index f1f09e8bae5a03e2e5531dd8577348c1cdcf2809..cced8cc7d3418726c0f24dce29528bee8735bb46 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