# HG changeset patch # User Goffi # Date 1413483008 -7200 # Node ID 251ae99a6c0ecf3e885314dedf0e91097cadc1f2 # Parent 80d2ed788b40870e512f64bf4a138a1b935a82ce core (config): fixed a bad option check diff -r 80d2ed788b40 -r 251ae99a6c0e src/tools/config.py --- a/src/tools/config.py Sat Oct 11 16:26:43 2014 +0200 +++ b/src/tools/config.py Thu Oct 16 20:10:08 2014 +0200 @@ -61,7 +61,7 @@ with open(target_file, 'wb') as configfile: config.write(configfile) # for the next time that user launches sat if not silent: - if option in ('passphrase'): # list here the options storing a password + if option in ('passphrase',): # list here the options storing a password value = '******' log.warning(_("Config auto-update: %(option)s set to %(value)s in the file %(config_file)s") % {'option': option, 'value': value, 'config_file': target_file})