summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-07-15 14:01:56 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-07-15 22:08:22 +1000
commit3e8dba17030544a389611814e47521ceafa1ae8a (patch)
treec6a4577fba97721e532b1f40f085122310965741 /source4
parentfcdf619b361b9c30b59f65ba38f69f344b4c95ae (diff)
downloadsamba-3e8dba17030544a389611814e47521ceafa1ae8a.tar.gz
samba-3e8dba17030544a389611814e47521ceafa1ae8a.tar.bz2
samba-3e8dba17030544a389611814e47521ceafa1ae8a.zip
s4:pyldb whitespace fix
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb/pyldb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/pyldb.c b/source4/lib/ldb/pyldb.c
index bcfbedd962..f27ab3dd95 100644
--- a/source4/lib/ldb/pyldb.c
+++ b/source4/lib/ldb/pyldb.c
@@ -2046,7 +2046,7 @@ static int py_ldb_msg_setitem(PyLdbMessageObject *self, PyObject *name, PyObject
ldb_msg_remove_attr(self->msg, attr_name);
} else {
struct ldb_message_element *el = PyObject_AsMessageElement(self->msg,
- value, 0, attr_name);
+ value, 0, attr_name);
if (el == NULL)
return -1;
ldb_msg_remove_attr(PyLdbMessage_AsMessage(self), attr_name);