Author: Tim Felgentreff <[email protected]>
Branch: 
Changeset: r357:c9d95a10ca3c
Date: 2013-04-30 16:08 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/c9d95a10ca3c/

Log:    fix benchmark script

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