X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_new.py;h=d742ac20c3a1c1a0ca9b91871acbf00cda941cb2;hb=6c28a1fecc669c80960a7168a8f673d09302a541;hp=8a43f127370a2d0e584585111d27416d8d11a126;hpb=bd78bbf9170cc8ee2dda06a7f060fd3370fea2bd;p=dak.git diff --git a/dak/process_new.py b/dak/process_new.py index 8a43f127..d742ac20 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -230,6 +230,7 @@ def sort_changes(changes_files): class Section_Completer: def __init__ (self): self.sections = [] + self.matches = [] q = projectB.query("SELECT section FROM section") for i in q.getresult(): self.sections.append(i[0]) @@ -251,6 +252,7 @@ class Section_Completer: class Priority_Completer: def __init__ (self): self.priorities = [] + self.matches = [] q = projectB.query("SELECT priority FROM priority") for i in q.getresult(): self.priorities.append(i[0])