diff options
author | Oz Linden <oz@lindenlab.com> | 2014-01-24 16:57:55 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-01-24 16:57:55 -0500 |
commit | 03d0d46e6fc0055a769c0387482619afd6362abc (patch) | |
tree | 3d5037dbb26f8dd190ea24a89ffabece6875d503 | |
parent | b45effe6daccbfba249f747450dddf60b8bb1abe (diff) | |
parent | cec62b7872db7a9ca52e3872b96bf36f6e271f77 (diff) |
merge fix to the codesign fix
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index bf19722a82..96b4c7268c 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -833,7 +833,7 @@ class Darwin_i386_Manifest(ViewerManifest): signed=True # if no exception was raised, the codesign worked except ManifestError, err: if sign_attempts: - print >> sys.stderr, "codesign failed, waiting %d seconds before retrying" + print >> sys.stderr, "codesign failed, waiting %d seconds before retrying" % sign_retry_wait time.sleep(sign_retry_wait) sign_retry_wait*=2 else: |