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