From bec94af8319f5343e57253bc69cf4a13c16ccde0 Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Kolab Systems)" Date: Wed, 21 Sep 2011 15:13:02 +0100 Subject: Fix syntax error --- pykolab/constants.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pykolab/constants.py.in b/pykolab/constants.py.in index 3e9e2c2..68fb9b2 100644 --- a/pykolab/constants.py.in +++ b/pykolab/constants.py.in @@ -30,7 +30,7 @@ __release__ = '@RELEASE@' if @RELEASE@ < 1: __status__ = 'snapshot' -elif math.floor((float)@RELEASE@) < (float)@RELEASE@: +elif math.floor((float)(@RELEASE@)) < (float)(@RELEASE@): __status__ = 'prerelease' else: __status__ = 'stable' -- cgit v1.1