diff options
author | Christian Goetze <cg@lindenlab.com> | 2009-09-01 01:46:05 +0000 |
---|---|---|
committer | Christian Goetze <cg@lindenlab.com> | 2009-09-01 01:46:05 +0000 |
commit | cbad737f59572c9616920fbfb0a54877ade03f8a (patch) | |
tree | d1fe435d278d44d92ea42a8b9563508ade76e8d0 /indra | |
parent | 778b893212c25779b3a511e9d59b7b4cae5000a9 (diff) |
Fix syntax error introduced by your's truely into develop.py
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/develop.py b/indra/develop.py index 4daa85ba3b..b2b494d1b3 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -593,7 +593,7 @@ class WindowsSetup(PlatformSetup): else: error = 'exited with status %d' % ret if retry_on is not None and retry_on == ret: - print "Retrying... the command %r %s" % (name, error)) + print "Retrying... the command %r %s" % (name, error) else: raise CommandError('the command %r %s' % (name, error)) |