diff options
author | Oz Linden <oz@lindenlab.com> | 2014-01-24 16:39:00 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-01-24 16:39:00 -0500 |
commit | cec62b7872db7a9ca52e3872b96bf36f6e271f77 (patch) | |
tree | d70fd9cc2d94da7479187f2373e04c6fa84aaa28 | |
parent | cdec438683bedb4d9cabc95abf711125694a8138 (diff) |
fix error message python boo-boo
-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: |