diff options
-rw-r--r-- | climl/imap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/climl/imap.py b/climl/imap.py index e2ae36e..7ab9a46 100644 --- a/climl/imap.py +++ b/climl/imap.py @@ -140,7 +140,7 @@ def main(callback=None, conf=None): if password_command: password = subprocess.check_output(password_command, shell=True) password = password.rstrip().decode('utf8') - print('got pasword:', password) + print('got pasword: hidden') maxsize = conf.get('mail.maxsize', 100*1024) # 100k default maxsize = int(maxsize) while True: |