summaryrefslogtreecommitdiff
path: root/build/apply_locales.py
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-03-19 23:05:23 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-03-19 23:05:23 +0000
commitfcc7537f40488648892858bfdc4eacb653b26337 (patch)
tree19920fa3df6f81b120737c503bf60cf7aa2570ea /build/apply_locales.py
parent025a63be23d33d7d4a0e558d13bbee1683aa92d1 (diff)
parent0d2fef2d6dc74ffd5429c435f87213d1167105c9 (diff)
downloadlibchrome-fcc7537f40488648892858bfdc4eacb653b26337.tar.gz
Snap for 11598262 from 0d2fef2d6dc74ffd5429c435f87213d1167105c9 to sdk-release
Change-Id: I12594cd94e6f308e3c09a6cad95ac92c16e62dfe
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))