Fix indentation

I've noticed that a bunch of the code we've included over the past few weeks has been using 8-spaces rather than tabs, making it all very hard to read depending on your tabstop setting. This commit attempts to revert all of that back to proper tabs and fix a few more cases I've noticed here and there. No functional changes are included in this commit. Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
parent 270261b9
...@@ -542,8 +542,7 @@ Container_attach_interface(Container *self, PyObject *args, PyObject *kwds) ...@@ -542,8 +542,7 @@ Container_attach_interface(Container *self, PyObject *args, PyObject *kwds)
assert(dst_name != NULL); assert(dst_name != NULL);
} }
if (self->container->attach_interface(self->container, src_name, if (self->container->attach_interface(self->container, src_name, dst_name)) {
dst_name)) {
Py_XDECREF(py_src_name); Py_XDECREF(py_src_name);
Py_XDECREF(py_dst_name); Py_XDECREF(py_dst_name);
Py_RETURN_TRUE; Py_RETURN_TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment