Only say 'reading config file' in verbose mode

This commit is contained in:
Ciaran Gultnieks 2013-11-12 20:00:15 +00:00
parent 60fbbead5c
commit 652674f4eb

View file

@ -68,7 +68,8 @@ def read_config(opts, config_file='config.py'):
'max_icon_size': 72,
'stats_to_carbon': False
}
print "Reading %s..." % config_file
if options.verbose:
print "Reading %s..." % config_file
execfile(config_file, config)
return config