summaryrefslogtreecommitdiff
path: root/i18n.py
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-04-29 18:29:13 +0100
committerCarl Hetherington <cth@carlh.net>2014-04-29 18:29:13 +0100
commit570625d8a1900698e139e03fdf97604a52371231 (patch)
tree096adaab9b5e6de2d7873901e7a1653e30365df5 /i18n.py
parent6edec25d031394ad82627997f8b022b3ed03deb0 (diff)
Python 3 compatibility.
Diffstat (limited to 'i18n.py')
-rw-r--r--i18n.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18n.py b/i18n.py
index 51d236dc6..26a8a10ec 100644
--- a/i18n.py
+++ b/i18n.py
@@ -3,7 +3,7 @@ import os
from waflib import Logs
def command(c):
- print c
+ print(c)
os.system(c)
def pot(dir, sources, name):