[Python-checkins] r85997 - python/branches/py3k/Modules/_io/fileio.c

benjamin.peterson python-checkins at python.org
Sun Oct 31 01:13:57 CEST 2010


Author: benjamin.peterson
Date: Sun Oct 31 01:13:57 2010
New Revision: 85997

Log:
fix style

Modified:
   python/branches/py3k/Modules/_io/fileio.c

Modified: python/branches/py3k/Modules/_io/fileio.c
==============================================================================
--- python/branches/py3k/Modules/_io/fileio.c	(original)
+++ python/branches/py3k/Modules/_io/fileio.c	Sun Oct 31 01:13:57 2010
@@ -384,7 +384,7 @@
                 PyErr_SetFromErrnoWithFilename(PyExc_IOError, name);
             goto error;
         }
-        if(dircheck(self, name) < 0)
+        if (dircheck(self, name) < 0)
             goto error;
     }
 


More information about the Python-checkins mailing list