diff options
author | VG <vg@devys.org> | 2016-06-13 00:47:05 +0200 |
---|---|---|
committer | VG <vg@devys.org> | 2016-06-13 00:47:05 +0200 |
commit | 3905dba0deb821ef896492a45eda262cc7f45dd7 (patch) | |
tree | a54070c9e6d99b2721c27f2566277fc41168cd6c | |
parent | b4397aa7cd5da80e5d80597980f7ada5da018ee7 (diff) | |
download | climl-3905dba0deb821ef896492a45eda262cc7f45dd7.tar.gz climl-3905dba0deb821ef896492a45eda262cc7f45dd7.tar.bz2 climl-3905dba0deb821ef896492a45eda262cc7f45dd7.zip |
hide password in stdout
-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: |