diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-09-03 00:02:29 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-09-03 00:02:29 +0100 |
commit | bd7d47fceab39cb73358eea2e3dd3bf8cef10b01 (patch) | |
tree | 8f48f9bfc088c1f2076ae14d6257a9df45e2c155 /cmdclient | |
parent | more critique (diff) | |
download | synapse-bd7d47fceab39cb73358eea2e3dd3bf8cef10b01.tar.xz |
don't echo password to stdout...
Diffstat (limited to 'cmdclient')
-rwxr-xr-x | cmdclient/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdclient/console.py b/cmdclient/console.py index 7678b5e352..f6a7731eab 100755 --- a/cmdclient/console.py +++ b/cmdclient/console.py @@ -194,7 +194,7 @@ class SynapseCmd(cmd.Cmd): user = "@" + user + ":" + self._domain() reactor.callFromThread(self._do_login, user, p) - print " got %s " % p + #print " got %s " % p except Exception as e: print e |