diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-28 03:34:47 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-28 05:00:06 +0100 |
commit | a7675bd5010641051096344bffb9ce569193a8fb (patch) | |
tree | e819947fe36cbb7dfcdcf6c94855537b9e3894e9 /source4/torture/drs | |
parent | 6fea6368885a88f100def2aa230dfac1cb26b0d0 (diff) | |
download | samba-a7675bd5010641051096344bffb9ce569193a8fb.tar.gz samba-a7675bd5010641051096344bffb9ce569193a8fb.tar.bz2 samba-a7675bd5010641051096344bffb9ce569193a8fb.zip |
s4-python: Fix formatting of docstrings for the purpose of pydoctor.
Diffstat (limited to 'source4/torture/drs')
-rw-r--r-- | source4/torture/drs/python/repl_schema.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/source4/torture/drs/python/repl_schema.py b/source4/torture/drs/python/repl_schema.py index 16f00acdc5..1d94b0fdec 100644 --- a/source4/torture/drs/python/repl_schema.py +++ b/source4/torture/drs/python/repl_schema.py @@ -37,10 +37,12 @@ import samba samba.ensure_external_module("testtools", "testtools") samba.ensure_external_module("subunit", "subunit/python") -from ldb import LdbError, ERR_NO_SUCH_OBJECT -from ldb import SCOPE_BASE -from ldb import Message -from ldb import FLAG_MOD_REPLACE +from ldb import ( + LdbError, + SCOPE_BASE, + Message, + FLAG_MOD_REPLACE, + ) import samba.tests |