diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-09-21 14:13:02 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-09-21 14:13:02 (GMT) |
commit | bec94af8319f5343e57253bc69cf4a13c16ccde0 (patch) | |
tree | 5cca790cb839e419ad5e9538d3e3dc43e386fd17 | |
parent | 6ecd2a55995e24095c58ea689932f0b584a9ae40 (diff) | |
download | pykolab-pykolab-0.2.1.tar.gz |
Fix syntax errorpykolab-0.2.1
-rw-r--r-- | pykolab/constants.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
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' |