From d17fec74e57af8d55ec67d9f165501326271a42e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 31 Jan 2009 21:47:42 +0000 Subject: [PATCH] fix indentation --- Objects/unicodeobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 22f7202875..7035f1e2be 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1217,7 +1217,7 @@ PyObject *PyUnicode_AsEncodedObject(PyObject *unicode, } if (encoding == NULL) - encoding = PyUnicode_GetDefaultEncoding(); + encoding = PyUnicode_GetDefaultEncoding(); /* Encode via the codec registry */ v = PyCodec_Encode(unicode, encoding, errors); @@ -1241,7 +1241,7 @@ PyObject *PyUnicode_AsEncodedString(PyObject *unicode, } if (encoding == NULL) - encoding = PyUnicode_GetDefaultEncoding(); + encoding = PyUnicode_GetDefaultEncoding(); /* Shortcuts for common default encodings */ if (errors == NULL) { -- 2.50.1