[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] towpdown import_known_changes



Signed-off-by: Mike O'Connor <stew@vireo.org>
---
 dak/import_known_changes.py |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dak/import_known_changes.py b/dak/import_known_changes.py
index 3702411..d286775 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)
 
-- 
1.6.3.3


Reply to: