[Python-checkins] cpython (3.3): Fix indentation from previous commit

eli.bendersky python-checkins at python.org
Thu Nov 28 15:35:46 CET 2013


http://hg.python.org/cpython/rev/712ebde527c2
changeset:   87626:712ebde527c2
branch:      3.3
user:        Eli Bendersky <eliben at gmail.com>
date:        Thu Nov 28 06:33:21 2013 -0800
summary:
  Fix indentation from previous commit

files:
  Modules/_elementtree.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c
--- a/Modules/_elementtree.c
+++ b/Modules/_elementtree.c
@@ -2998,9 +2998,9 @@
     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;
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list