From 9cea41c195ee1067063c011f775f4f61ee463fa1 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Tue, 29 May 2001 17:13:15 +0000 Subject: fix bogus indentation --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12