From: Mike O'Connor Date: Sat, 9 Jan 2010 20:06:06 +0000 (-0500) Subject: index all suites X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=31fb4a609d8964ef1b9309678fbe20aa4d8b38bd index all suites Signed-off-by: Mike O'Connor --- diff --git a/dak/dakdb/update28.py b/dak/dakdb/update28.py index a828cf5c..1e32f2dd 100755 --- a/dak/dakdb/update28.py +++ b/dak/dakdb/update28.py @@ -39,11 +39,7 @@ def _suites(): """ return a list of suites to operate on """ - if Config().has_key( "%s::%s" %(options_prefix,"Suite")): - suites = utils.split_args(Config()[ "%s::%s" %(options_prefix,"Suite")]) - else: - suites = Config().SubTree("Suite").List() - + suites = Config().SubTree("Suite").List() return suites def arches(cursor, suite):