summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-11-28 14:33:21 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-11-28 14:33:21 (GMT)
commit4b79518f83fa6c4dadd69326276032d74c8e3df7 (patch)
tree4ddb5b138be8e2953839d8a125a755d82e0189a1 /Modules
parent5dd40e555b625c592b8391df84b36215204db4df (diff)
downloadcpython-4b79518f83fa6c4dadd69326276032d74c8e3df7.zip
cpython-4b79518f83fa6c4dadd69326276032d74c8e3df7.tar.gz
cpython-4b79518f83fa6c4dadd69326276032d74c8e3df7.tar.bz2
Fix indentation from previous commit
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_elementtree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c
index 7e01352..f45893f 100644
--- a/Modules/_elementtree.c
+++ b/Modules/_elementtree.c
@@ -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;