[pypy-commit] pypy default: untabify

mattip noreply at buildbot.pypy.org
Sun Sep 14 05:31:17 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r73531:3fb1090bc6e1
Date: 2014-09-14 06:30 +0300
http://bitbucket.org/pypy/pypy/changeset/3fb1090bc6e1/

Log:	untabify

diff --git a/rpython/translator/platform/windows.py b/rpython/translator/platform/windows.py
--- a/rpython/translator/platform/windows.py
+++ b/rpython/translator/platform/windows.py
@@ -204,9 +204,9 @@
         # must come first, and after the file name all options are ignored.
         # So please be careful with the order of parameters! ;-)
         pdb_dir = oname.dirname
-	if pdb_dir:
-	        compile_args += ['/Fd%s\\' % (pdb_dir,)]
-	args = ['/nologo', '/c'] + compile_args + ['/Fo%s' % (oname,), str(cfile)]
+        if pdb_dir:
+                compile_args += ['/Fd%s\\' % (pdb_dir,)]
+        args = ['/nologo', '/c'] + compile_args + ['/Fo%s' % (oname,), str(cfile)]
         self._execute_c_compiler(cc, args, oname)
         return oname
 


More information about the pypy-commit mailing list