X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate7.py;h=c8828535b021f29edcf23c979c42e9b2fc9bc146;hb=ed6728af1e7acc51129d9fd8b3f1d91697928872;hp=1c59707857a5d929472e2a170151ce492ac11684;hpb=650634f309b8cd602f4c36ae7f8f4181ea8b7783;p=dak.git diff --git a/dak/dakdb/update7.py b/dak/dakdb/update7.py index 1c597078..c8828535 100755 --- a/dak/dakdb/update7.py +++ b/dak/dakdb/update7.py @@ -48,7 +48,7 @@ def do_update(self): c.execute("ALTER TABLE suite ADD COLUMN untouchable BOOLEAN NOT NULL DEFAULT FALSE;") query = "UPDATE suite SET untouchable = TRUE WHERE suite_name = %s" #: Update query for suite in Cnf.SubTree("Suite").List(): - untouchable = Cnf.Find("Suite::%s::Announce" % (suite)) + untouchable = Cnf.Find("Suite::%s::Untouchable" % (suite)) if not untouchable: continue print "[Untouchable] Processing suite %s" % (suite)