Skip to content
Snippets Groups Projects
Commit 61bc236b authored by Nathan Wilcox's avatar Nathan Wilcox
Browse files

DEV-44838 - Remove a typo line which would cause duplicate executions for every run call.

parent 6b33d595
No related branches found
No related tags found
No related merge requests found
...@@ -593,7 +593,6 @@ def run(self, command, name=None, retry_on=None, retries=1): ...@@ -593,7 +593,6 @@ def run(self, command, name=None, retry_on=None, retries=1):
retries = retries - 1 retries = retries - 1
print "develop.py tries to run:", command print "develop.py tries to run:", command
ret = subprocess.call(command, executable=name) ret = subprocess.call(command, executable=name)
ret = os.system(command)
print "got ret", ret, "from", command print "got ret", ret, "from", command
if ret: if ret:
if name is None: if name is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment