From cbad737f59572c9616920fbfb0a54877ade03f8a Mon Sep 17 00:00:00 2001 From: Christian Goetze <cg@lindenlab.com> Date: Tue, 1 Sep 2009 01:46:05 +0000 Subject: [PATCH] Fix syntax error introduced by your's truely into develop.py --- indra/develop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/develop.py b/indra/develop.py index 4daa85ba3b7..b2b494d1b3d 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -593,7 +593,7 @@ def run(self, command, name=None, retry_on=None, retries=1): 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)) -- GitLab