summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2007-08-27 11:33:42 (GMT)
committerEric Smith <eric@trueblade.com>2007-08-27 11:33:42 (GMT)
commitddd25825c839cbae9dcc6c9a7c662d06ee113ca0 (patch)
tree919119cf2096bde2a06b174c071e394126b277e1
parente226b559637ca8a9972879b1ce33c9d99f449636 (diff)
downloadcpython-ddd25825c839cbae9dcc6c9a7c662d06ee113ca0.zip
cpython-ddd25825c839cbae9dcc6c9a7c662d06ee113ca0.tar.gz
cpython-ddd25825c839cbae9dcc6c9a7c662d06ee113ca0.tar.bz2
Fixed accidental indentation change.
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index c46da45..c799417 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -598,7 +598,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
*/
if ((*f == 'l' || *f == 'z') &&
(f[1] == 'd' || f[1] == 'u'))
- ++f;
+ ++f;
switch (*f) {
case 'c':