From 61bc236b355e19bf09851b79c7d73b7210b4a7af Mon Sep 17 00:00:00 2001 From: Nathan Wilcox <inoshiro@lindenlab.com> Date: Fri, 8 Jan 2010 17:58:56 -0800 Subject: [PATCH] DEV-44838 - Remove a typo line which would cause duplicate executions for every run call. --- indra/develop.py | 1 - 1 file changed, 1 deletion(-) diff --git a/indra/develop.py b/indra/develop.py index dc1190699ce..e19ecb7314c 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -593,7 +593,6 @@ def run(self, command, name=None, retry_on=None, retries=1): retries = retries - 1 print "develop.py tries to run:", command ret = subprocess.call(command, executable=name) - ret = os.system(command) print "got ret", ret, "from", command if ret: if name is None: -- GitLab