]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix style
authorBenjamin Peterson <benjamin@python.org>
Sat, 30 Oct 2010 23:13:57 +0000 (23:13 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 30 Oct 2010 23:13:57 +0000 (23:13 +0000)
Modules/_io/fileio.c

index 279df34c8d89ba63f29a0a877d92fd74ad479ce8..37ff25c495dd59045d0e75443be7ee5aff3e1f02 100644 (file)
@@ -384,7 +384,7 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
                 PyErr_SetFromErrnoWithFilename(PyExc_IOError, name);
             goto error;
         }
-        if(dircheck(self, name) < 0)
+        if (dircheck(self, name) < 0)
             goto error;
     }