Fix whitespace.

This commit is contained in:
Brett Cannon 2009-09-22 19:13:27 +00:00
parent f778bec8ed
commit 6ef9fd7c97
1 changed files with 42 additions and 41 deletions

View File

@ -539,7 +539,8 @@ time_strptime(PyObject *self, PyObject *args)
if (!strptime_module)
return NULL;
strptime_result = PyObject_CallMethod(strptime_module, "_strptime_time", "O", args);
strptime_result = PyObject_CallMethod(strptime_module,
"_strptime_time", "O", args);
Py_DECREF(strptime_module);
return strptime_result;
}