summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2011-04-06 06:11:09 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2011-04-06 06:11:09 (GMT)
commitae664fb528c86da44fbb9350cca05659c206bfc2 (patch)
tree63f34334f802b6354664011412b4cf016b2be234 /Modules
parentb6f5ec737008f5c739ba3c667e1ae01b8625488b (diff)
parent8f377a3bbe5588da3328ab816ce5f707aa3c97ac (diff)
downloadcpython-ae664fb528c86da44fbb9350cca05659c206bfc2.zip
cpython-ae664fb528c86da44fbb9350cca05659c206bfc2.tar.gz
cpython-ae664fb528c86da44fbb9350cca05659c206bfc2.tar.bz2
Merge from 3.1
Diffstat (limited to 'Modules')
-rw-r--r--Modules/timemodule.c2
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;