Skip to content

Commit 4b79518

Browse files
committed
Fix indentation from previous commit
1 parent 5dd40e5 commit 4b79518

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_elementtree.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2998,9 +2998,9 @@ expat_start_ns_handler(XMLParserObject* self, const XML_Char* prefix,
29982998
PyObject* suri = NULL;
29992999

30003000
if (uri)
3001-
suri = PyUnicode_DecodeUTF8(uri, strlen(uri), "strict");
3001+
suri = PyUnicode_DecodeUTF8(uri, strlen(uri), "strict");
30023002
else
3003-
suri = PyUnicode_FromString("");
3003+
suri = PyUnicode_FromString("");
30043004
if (!suri)
30053005
return;
30063006

0 commit comments

Comments
 (0)