summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-30 23:13:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-30 23:13:57 (GMT)
commit430d469758a7a5574409f06431b8596261d62893 (patch)
tree4530c873ac5df37ac9b3dba20d190760c6eb9708 /Modules
parente048797991d4ea568c4d3eacf37cc2c3f0f5a344 (diff)
downloadcpython-430d469758a7a5574409f06431b8596261d62893.zip
cpython-430d469758a7a5574409f06431b8596261d62893.tar.gz
cpython-430d469758a7a5574409f06431b8596261d62893.tar.bz2
fix style
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_io/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c
index 279df34..37ff25c 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;
}