From 430d469758a7a5574409f06431b8596261d62893 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 30 Oct 2010 23:13:57 +0000 Subject: [PATCH] fix style --- Modules/_io/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 279df34c8d..37ff25c495 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; } -- 2.50.1