diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-06-28 14:36:55 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-06-28 14:36:55 (GMT) |
commit | 311d2a93a17e321bf77a84f53666843565856b92 (patch) | |
tree | 7c146b8bd75f18f1480c6a55c7aca534fc81c64e /Modules/datetimemodule.c | |
parent | 8749a6347328b091a472d07305aaf82353dda3e8 (diff) | |
download | cpython-311d2a93a17e321bf77a84f53666843565856b92.zip cpython-311d2a93a17e321bf77a84f53666843565856b92.tar.gz cpython-311d2a93a17e321bf77a84f53666843565856b92.tar.bz2 |
Added missing white space
Diffstat (limited to 'Modules/datetimemodule.c')
-rw-r--r-- | Modules/datetimemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index d31aab6..ce94a1e 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -4386,7 +4386,7 @@ datetime_strptime(PyObject *cls, PyObject *args) if (module == NULL) { module = PyImport_ImportModuleNoBlock("_strptime"); - if(module == NULL) + if (module == NULL) return NULL; } return PyObject_CallMethod(module, "_strptime_datetime", "Ouu", |