summaryrefslogtreecommitdiff
path: root/build/apply_locales.py
diff options
context:
space:
mode:
Diffstat (limited to 'build/apply_locales.py')
-rwxr-xr-xbuild/apply_locales.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/apply_locales.py b/build/apply_locales.py
index 6af7280fad..99d73d3e04 100755
--- a/build/apply_locales.py
+++ b/build/apply_locales.py
@@ -20,7 +20,7 @@ def main(argv):
(options, arglist) = parser.parse_args(argv)
if len(arglist) < 3:
- print 'ERROR: need string and list of locales'
+ print('ERROR: need string and list of locales')
return 1
str_template = arglist[1]
@@ -39,7 +39,7 @@ def main(argv):
# Quote each element so filename spaces don't mess up GYP's attempt to parse
# it into a list.
- print ' '.join(["'%s'" % x for x in results])
+ print(' '.join(["'%s'" % x for x in results]))
if __name__ == '__main__':
sys.exit(main(sys.argv))