[pypy-svn] r59239 - pypy/branch/cbuild-refactor/pypy/translator

afa at codespeak.net afa at codespeak.net
Sun Oct 19 18:35:24 CEST 2008


Author: afa
Date: Sun Oct 19 18:35:22 2008
New Revision: 59239

Modified:
   pypy/branch/cbuild-refactor/pypy/translator/driver.py
Log:
Translation fix for Windows


Modified: pypy/branch/cbuild-refactor/pypy/translator/driver.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/translator/driver.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/translator/driver.py	Sun Oct 19 18:35:22 2008
@@ -859,5 +859,5 @@
 
 def mkexename(name):
     if sys.platform == 'win32':
-        name = os.path.normpath(name + '.exe')
+        name = os.path.normpath(str(name) + '.exe')
     return name



More information about the Pypy-commit mailing list