Commit d17fec74 authored by Benjamin Peterson's avatar Benjamin Peterson

fix indentation

parent fb921e2c
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment