diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-11-01 06:56:09 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2014-11-19 02:46:03 +0100 |
commit | f0fa5636e30063a75f2942013fc1579afa3525c2 (patch) | |
tree | 06cfa8904ba88e32879c021c7ef5d5d98df2c01a /auth | |
parent | fb4b0ac611e971a5278de41d1f04309f7cca3b95 (diff) | |
download | samba-f0fa5636e30063a75f2942013fc1579afa3525c2.tar.gz |
Remove unused imports.
Change-Id: I8915f62206edb53ffc2d89434e46d9e71db8bb9a
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'auth')
-rwxr-xr-x | auth/credentials/tests/bind.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/auth/credentials/tests/bind.py b/auth/credentials/tests/bind.py index aa4b17aaff4..ceb3e8ffb7c 100755 --- a/auth/credentials/tests/bind.py +++ b/auth/credentials/tests/bind.py @@ -17,18 +17,12 @@ samba.ensure_external_module("subunit", "subunit/python") import samba.getopt as options -from ldb import ( - SCOPE_BASE, SCOPE_SUBTREE, LdbError, ERR_NO_SUCH_OBJECT) -from samba.dcerpc import security +from ldb import SCOPE_BASE, SCOPE_SUBTREE -from samba.auth import system_session from samba import gensec -from samba.samdb import SamDB -from samba.credentials import Credentials import samba.tests, unittest from samba.tests import delete_force from subunit.run import SubunitTestRunner -from samba.tests import TestCase, TestSkipped parser = optparse.OptionParser("ldap [options] <host>") sambaopts = options.SambaOptions(parser) |