summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-05-29 17:13:15 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-05-29 17:13:15 (GMT)
commit9cea41c195ee1067063c011f775f4f61ee463fa1 (patch)
tree89fccfc8b8ec9d7ced4d69df80894d642f01292f /Objects
parente51fe8d0a3d2a3fc83fd4f02521b0808c073bf50 (diff)
downloadcpython-9cea41c195ee1067063c011f775f4f61ee463fa1.zip
cpython-9cea41c195ee1067063c011f775f4f61ee463fa1.tar.gz
cpython-9cea41c195ee1067063c011f775f4f61ee463fa1.tar.bz2
fix bogus indentation
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index d55e2a7..84de8ca 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -529,7 +529,7 @@ PyObject *PyUnicode_AsEncodedString(PyObject *unicode,
/* Shortcuts for common default encodings */
if (errors == NULL) {
if (strcmp(encoding, "utf-8") == 0)
- return PyUnicode_AsUTF8String(unicode);
+ return PyUnicode_AsUTF8String(unicode);
else if (strcmp(encoding, "latin-1") == 0)
return PyUnicode_AsLatin1String(unicode);
else if (strcmp(encoding, "ascii") == 0)