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

eli.bendersky python-checkins at python.org
Thu Nov 28 15:37:27 CET 2013


http://hg.python.org/cpython/rev/3a7a3def6503
changeset:   87628:3a7a3def6503
branch:      2.7
parent:      87624:395a266bcb5a
user:        Eli Bendersky <eliben at gmail.com>
date:        Thu Nov 28 06:37:25 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
@@ -2339,9 +2339,9 @@
     PyObject* suri = NULL;
 
     if (uri)
-      suri = makestring(uri, strlen(uri));
+        suri = makestring(uri, strlen(uri));
     else
-      suri = PyString_FromStringAndSize("", 0);
+        suri = PyString_FromStringAndSize("", 0);
     if (!suri)
         return;
 

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


More information about the Python-checkins mailing list