Fix indentation from previous commit

This commit is contained in:
Eli Bendersky 2013-11-28 06:33:21 -08:00
parent 5dd40e555b
commit 4b79518f83
1 changed files with 2 additions and 2 deletions

View File

@ -2998,9 +2998,9 @@ expat_start_ns_handler(XMLParserObject* self, const XML_Char* prefix,
PyObject* suri = NULL;
if (uri)
suri = PyUnicode_DecodeUTF8(uri, strlen(uri), "strict");
suri = PyUnicode_DecodeUTF8(uri, strlen(uri), "strict");
else
suri = PyUnicode_FromString("");
suri = PyUnicode_FromString("");
if (!suri)
return;