From: Benjamin Peterson Date: Sat, 30 Oct 2010 23:13:57 +0000 (+0000) Subject: fix style X-Git-Tag: v3.2a4~244 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=430d469758a7a5574409f06431b8596261d62893;p=thirdparty%2FPython%2Fcpython.git fix style --- diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 279df34c8d89..37ff25c495dd 100644 --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c @@ -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; }