diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2011-04-06 06:11:09 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2011-04-06 06:11:09 (GMT) |
commit | ae664fb528c86da44fbb9350cca05659c206bfc2 (patch) | |
tree | 63f34334f802b6354664011412b4cf016b2be234 /Modules | |
parent | b6f5ec737008f5c739ba3c667e1ae01b8625488b (diff) | |
parent | 8f377a3bbe5588da3328ab816ce5f707aa3c97ac (diff) | |
download | cpython-ae664fb528c86da44fbb9350cca05659c206bfc2.zip cpython-ae664fb528c86da44fbb9350cca05659c206bfc2.tar.gz cpython-ae664fb528c86da44fbb9350cca05659c206bfc2.tar.bz2 |
Merge from 3.1
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index c3b51ef..3af041a 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -512,7 +512,7 @@ time_strftime(PyObject *self, PyObject *args) if (outbuf[1]=='#') ++outbuf; /* not documented by python, */ if (outbuf[1]=='\0' || - !wcschr(L"aAbBcdfHIjmMpSUwWxXyYzZ%", outbuf[1])) + !wcschr(L"aAbBcdHIjmMpSUwWxXyYzZ%", outbuf[1])) { PyErr_SetString(PyExc_ValueError, "Invalid format string"); return 0; |