Author: Lars Wassermann <[email protected]>
Branch: 
Changeset: r359:60891eda87e3
Date: 2013-04-30 16:43 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/60891eda87e3/

Log:    merge with tip

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -154,9 +154,9 @@
             callback(self)
 
     def run(self, args):
-        print 'Calling %s ...' % executable
+        print 'Calling %s ...' % self.name
         pipe = subprocess.Popen(
-            ["%s" % executable.path] + args,
+            ["%s" % self.path] + args,
             stdout=subprocess.PIPE
         )
         out, err = pipe.communicate()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to