summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2017-04-25 13:25:10 +0200
committerStefan Metzmacher <metze@samba.org>2017-05-05 01:37:45 +0200
commit4c17850ae7b6c85e99e5d4d5bc5d8e89a9ba6d47 (patch)
tree85e1d1355070843dbac6552f685601dfc8546ca0 /python
parentafa15e6128473d3e4006f7cdc3762ab4c1cba05a (diff)
downloadsamba-4c17850ae7b6c85e99e5d4d5bc5d8e89a9ba6d47.tar.gz
samba-tool: fix log message of 'samba-tool user syncpasswords'
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12768 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Fri May 5 01:37:45 CEST 2017 on sn-devel-144
Diffstat (limited to 'python')
-rw-r--r--python/samba/netcmd/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/netcmd/user.py b/python/samba/netcmd/user.py
index 47d958d6104..f1e17ddd4c7 100644
--- a/python/samba/netcmd/user.py
+++ b/python/samba/netcmd/user.py
@@ -1617,7 +1617,7 @@ samba-tool user syncpasswords --terminate \\
return
def run_sync_command(dn, ldif):
- log_msg("Call Popen[%s] for %s\n" % (dn, self.sync_command))
+ log_msg("Call Popen[%s] for %s\n" % (self.sync_command, dn))
sync_command_p = Popen(self.sync_command,
stdin=PIPE,
stdout=PIPE,