From: Mike O'Connor Date: Fri, 30 Oct 2009 14:13:59 +0000 (+0100) Subject: towpdown import_known_changes X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=1cbe83ac12a34c4969b8725c54423db3d8170577;hp=808bfb20c3324db643a231ad4891ea1bac83e829;p=dak.git towpdown import_known_changes Signed-off-by: Mike O'Connor --- diff --git a/dak/import_known_changes.py b/dak/import_known_changes.py index 3702411d..d286775a 100755 --- a/dak/import_known_changes.py +++ b/dak/import_known_changes.py @@ -195,7 +195,7 @@ class ChangesGenerator(threading.Thread): if os.path.exists(checkdir): print "Looking into %s" % (checkdir) - for dirpath, dirnames, filenames in os.walk(checkdir, topdown=False): + for dirpath, dirnames, filenames in os.walk(checkdir, topdown=True): if not filenames: # Empty directory (or only subdirectories), next continue @@ -255,13 +255,12 @@ class ImportThread(threading.Thread): except ChangesUnicodeError: warn("found invalid changes file, not properly utf-8 encoded") - except KeyboardInterrupt: print("Caught C-c; on ImportThread. terminating.") self.parent.plsDie() sys.exit(1) + except: - traceback.print_exc() self.parent.plsDie() sys.exit(1)