We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f64ac0 commit 4853bfbCopy full SHA for 4853bfb
1 file changed
examples/run_examples.py
@@ -33,7 +33,7 @@
33
34
def run_example(path):
35
""" Returns returncode of example """
36
- cmd = "{} {}".format(sys.executable, path)
+ cmd = "{0} {1}".format(sys.executable, path)
37
proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
38
res = proc.communicate()
39
if proc.returncode:
0 commit comments