Only print 'Nothing to do' in verbose mode

This commit is contained in:
Ciaran Gultnieks 2013-11-09 15:39:12 +00:00
parent aa98a8d64a
commit 080536467b

View file

@ -327,7 +327,8 @@ def main():
if options.autoonly and app['Auto Update Mode'] == 'None': if options.autoonly and app['Auto Update Mode'] == 'None':
print "Nothing to do for %s..." % app['id'] if options.verbose:
print "Nothing to do for %s..." % app['id']
continue continue
print "Processing " + app['id'] + '...' print "Processing " + app['id'] + '...'