1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

dbchecker: fixed argument error for -H and DN

This commit is contained in:
Andrew Tridgell
2011-06-22 21:22:39 +10:00
committed by Matthieu Patou
parent 6b939f4a9c
commit 4fe9ebc2e3

View File

@ -59,7 +59,7 @@ class cmd_dbcheck(Command):
Option("-H", help="LDB URL for database or target server (defaults to local SAM database)", type=str),
]
def run(self, H=None, DN=None, verbose=False, fix=False, yes=False, cross_ncs=False, quiet=False,
def run(self, DN=None, H=None, verbose=False, fix=False, yes=False, cross_ncs=False, quiet=False,
scope="SUB", credopts=None, sambaopts=None, versionopts=None, attrs=None):
lp = sambaopts.get_loadparm()