From 080536467bbce794d56d2f3f59c75dbed3de318c Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Sat, 9 Nov 2013 15:39:12 +0000 Subject: [PATCH] Only print 'Nothing to do' in verbose mode --- fdroidserver/checkupdates.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index 5b74fa37..00aef326 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -327,7 +327,8 @@ def main(): 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 print "Processing " + app['id'] + '...' -- 2.30.2