From: Ansgar Burchardt Date: Fri, 2 Aug 2013 20:51:04 +0000 (+0200) Subject: dak/rm.py: remove some output X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=1f6a57da8373f873c7b86c6ae3fb1e74c8a53f09 dak/rm.py: remove some output Deciding which packages to remove became much quicker now that only the database is queried and no files are accessed. So the indication that work is in progress is no longer needed. --- diff --git a/dak/rm.py b/dak/rm.py index 5cc12402..2f9091ee 100755 --- a/dak/rm.py +++ b/dak/rm.py @@ -244,8 +244,6 @@ def main (): if Options["Rdep-Check"] and len(suites) > 1: utils.fubar("Reverse dependency check on multiple suites is not implemented.") - print "Working...", - sys.stdout.flush() to_remove = [] maintainers = {} @@ -279,7 +277,6 @@ def main (): JOIN src_associations sa ON s.id = sa.source AND sa.suite = su.id WHERE TRUE %s %s %s %s""" % (con_packages, con_suites, con_components, con_architectures)) to_remove.extend(q) - print "done." if not to_remove: print "Nothing to do."