[pypy-svn] r52089 - pypy/branch/jit-refactoring/pypy/jit/codegen/i386/test

arigo at codespeak.net arigo at codespeak.net
Mon Mar 3 14:54:55 CET 2008


Author: arigo
Date: Mon Mar  3 14:54:53 2008
New Revision: 52089

Modified:
   pypy/branch/jit-refactoring/pypy/jit/codegen/i386/test/test_genc_portal.py
Log:
Typo.  All these tests pass!


Modified: pypy/branch/jit-refactoring/pypy/jit/codegen/i386/test/test_genc_portal.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/codegen/i386/test/test_genc_portal.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/codegen/i386/test/test_genc_portal.py	Mon Mar  3 14:54:53 2008
@@ -84,7 +84,7 @@
         self.cbuilder.generate_source()
         exename = self.cbuilder.compile()
         print '-'*60
-        print 'Generated executable for %s: %s', (self.testname, exename)
+        print 'Generated executable for %s: %s' % (self.testname, exename)
         print '-'*60
 
 


More information about the pypy-svn mailing list