From: Carl Hetherington Date: Tue, 29 Apr 2014 17:29:13 +0000 (+0100) Subject: Python 3 compatibility. X-Git-Tag: v2.0.48~551^2~225 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=570625d8a1900698e139e03fdf97604a52371231;hp=6edec25d031394ad82627997f8b022b3ed03deb0 Python 3 compatibility. --- 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):