1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

pynet: fixed ref count error on Py_None

ensure we don't run out of None ...

Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>
This commit is contained in:
Andrew Tridgell 2010-08-28 22:18:00 +10:00
parent 58d92cefe2
commit e2fdcf1a7a

View File

@ -453,7 +453,7 @@ static PyObject *py_net_replicate_chunk(py_net_Object *self, PyObject *args, PyO
return NULL;
}
return Py_None;
Py_RETURN_NONE;
}
static const char py_net_vampire_doc[] = "vampire(domain, target_dir=None)\n"