diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-04-29 18:29:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-04-29 18:29:13 +0100 |
| commit | 570625d8a1900698e139e03fdf97604a52371231 (patch) | |
| tree | 096adaab9b5e6de2d7873901e7a1653e30365df5 /i18n.py | |
| parent | 6edec25d031394ad82627997f8b022b3ed03deb0 (diff) | |
Python 3 compatibility.
Diffstat (limited to 'i18n.py')
| -rw-r--r-- | i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |
