diff options
author | Matthieu Patou <mat@matws.net> | 2011-06-19 21:27:32 +0400 |
---|---|---|
committer | Matthieu Patou <mat@samba.org> | 2011-06-19 23:21:08 +0200 |
commit | bc549575dd0f80089dcaefcefeb4211c3771b8c6 (patch) | |
tree | 45e1d81fdda321cf8530f3b217bb342a9d49eb5b /source4/scripting/python | |
parent | db0309160740afcdfb192cb55d15f906b15e0481 (diff) | |
download | samba-bc549575dd0f80089dcaefcefeb4211c3771b8c6.tar.gz samba-bc549575dd0f80089dcaefcefeb4211c3771b8c6.tar.bz2 samba-bc549575dd0f80089dcaefcefeb4211c3771b8c6.zip |
s4-samba-tool: remove unused imports
Diffstat (limited to 'source4/scripting/python')
-rw-r--r-- | source4/scripting/python/samba/netcmd/dbcheck.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/netcmd/dbcheck.py b/source4/scripting/python/samba/netcmd/dbcheck.py index c1321d0f46..5f75c3ee6c 100644 --- a/source4/scripting/python/samba/netcmd/dbcheck.py +++ b/source4/scripting/python/samba/netcmd/dbcheck.py @@ -18,11 +18,10 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -import samba, ldb, sys +import ldb, sys import samba.getopt as options from samba.auth import system_session from samba.samdb import SamDB -from samba.dcerpc import security from samba.netcmd import ( Command, CommandError, |