tools/python: Fix indenting in 25030:6ced0ed954d6
authorIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 13 Mar 2012 17:21:37 +0000 (17:21 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 13 Mar 2012 17:21:37 +0000 (17:21 +0000)
Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
tools/python/xen/lowlevel/xl/xl.c

index 8ca429a3c290efe113761371109ba3861f6f5f07..bbbf2a9cb6d58b44ef7ec3466c4ddc2573f79e86 100644 (file)
@@ -408,8 +408,8 @@ static PyObject *pyxl_domid_to_name(XlObject *self, PyObject *args)
     domname = libxl_domid_to_name(self->ctx, domid);
     if (domname)
         ret = PyString_FromString(domname);
-       else
-               Py_INCREF(Py_None);
+    else
+        Py_INCREF(Py_None);
     free(domname);
 
     return ret;