summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2022-03-09 16:47:35 -0800
committerMnikolenko Productengine <mnikolenko@productengine.com>2022-03-15 16:25:29 +0200
commitd922d2ba7dc9e2a0de1cf69b569174e3990ae80f (patch)
treec2432169671516682512af7541a09a0d30bc20cc /indra
parent00b71d8197ed2a64b2d2fa01a72f5cd316e198b7 (diff)
More DRTVWR-550 Teamcity build fix. another piece of python2 syntax leftover in an error handling block
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/viewer_manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 6aafc07bc7..76160b73ba 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -1335,7 +1335,7 @@ class DarwinManifest(ViewerManifest):
# 'err' goes out of scope
sign_failed = err
else:
- print >> sys.stderr, "Maximum codesign attempts exceeded; giving up"
+ print("Maximum codesign attempts exceeded; giving up", file=sys.stderr)
raise sign_failed
self.run_command(['spctl', '-a', '-texec', '-vvvv', app_in_dmg])
self.run_command([self.src_path_of("installers/darwin/apple-notarize.sh"), app_in_dmg])