diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-03-01 22:33:01 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-04-08 23:22:55 +0200 |
commit | 0c6f434b7bc0d9d4a8819a03815200966c92736e (patch) | |
tree | 05758aa19e7f6c408717b705f8cab15ee12fdccc /source4/scripting | |
parent | 6510b2cdd21c473bd146b7630d69d06342801cb1 (diff) | |
download | samba-0c6f434b7bc0d9d4a8819a03815200966c92736e.tar.gz samba-0c6f434b7bc0d9d4a8819a03815200966c92736e.tar.bz2 samba-0c6f434b7bc0d9d4a8819a03815200966c92736e.zip |
net: Convert time command to python.
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/netcmd/export.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/netcmd/export.py b/source4/scripting/python/samba/netcmd/export.py index 90b83689dd..9f1ff3d133 100644 --- a/source4/scripting/python/samba/netcmd/export.py +++ b/source4/scripting/python/samba/netcmd/export.py @@ -46,7 +46,7 @@ class cmd_export_keytab(Command): lp = sambaopts.get_loadparm() creds = credopts.get_credentials(lp) net = Net(creds, lp) - net.export_keytab(keytab=keytab, creds=creds) + net.export_keytab(keytab=keytab) class cmd_export(SuperCommand): |