summaryrefslogtreecommitdiff
path: root/cheetah/Version.py
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@monkeypox.org>2009-11-08 15:22:10 -0800
committerR. Tyler Ballance <tyler@monkeypox.org>2009-11-16 00:04:04 -0800
commit0b8c21f8f3cc5f95f2184bf717b62f2888ed4935 (patch)
treef8450c987a3b178936b5d62a8820d1a803788c49 /cheetah/Version.py
parenta23cfe7fc38af7f38a5d032592456152f635f995 (diff)
downloadpython-cheetah-0b8c21f8f3cc5f95f2184bf717b62f2888ed4935.tar.gz
Refactor raw print statements in accordance with 2to3
Removed prints in a couple places entirely, some of this code should likely use the `logging` module instead
Diffstat (limited to 'cheetah/Version.py')
-rw-r--r--cheetah/Version.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cheetah/Version.py b/cheetah/Version.py
index 7fdf82f..9cc2e91 100644
--- a/cheetah/Version.py
+++ b/cheetah/Version.py
@@ -32,11 +32,11 @@ def convertVersionStringToTuple(s):
if __name__ == '__main__':
c = convertVersionStringToTuple
- print c('2.0a1')
- print c('2.0b1')
- print c('2.0rc1')
- print c('2.0')
- print c('2.0.2')
+ print(c('2.0a1'))
+ print(c('2.0b1'))
+ print(c('2.0rc1'))
+ print(c('2.0'))
+ print(c('2.0.2'))
assert c('0.9.19b1') < c('0.9.19')