diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-05-29 17:13:15 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-05-29 17:13:15 (GMT) |
commit | 9cea41c195ee1067063c011f775f4f61ee463fa1 (patch) | |
tree | 89fccfc8b8ec9d7ced4d69df80894d642f01292f /Objects/unicodeobject.c | |
parent | e51fe8d0a3d2a3fc83fd4f02521b0808c073bf50 (diff) | |
download | cpython-9cea41c195ee1067063c011f775f4f61ee463fa1.zip cpython-9cea41c195ee1067063c011f775f4f61ee463fa1.tar.gz cpython-9cea41c195ee1067063c011f775f4f61ee463fa1.tar.bz2 |
fix bogus indentation
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
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) |