X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate8.py;h=6bacd4ed1e79613cb0297e2d9a53b227ead91f70;hb=772655d608069f12e400e0d6c7b7fac76eb98083;hp=1c86c866bbb7df137f34c8004800e8994bcf0f05;hpb=27e00376e81d1c37ff327ee0d39670b266418869;p=dak.git diff --git a/dak/dakdb/update8.py b/dak/dakdb/update8.py old mode 100755 new mode 100644 index 1c86c866..6bacd4ed --- a/dak/dakdb/update8.py +++ b/dak/dakdb/update8.py @@ -48,8 +48,8 @@ def do_update(self): c.execute("ALTER TABLE suite ADD COLUMN copychanges TEXT;") query = "UPDATE suite SET copychanges = %s WHERE suite_name = %s" #: Update query - for suite in Cnf.SubTree("Suite").List(): - copychanges = Cnf.Find("Suite::%s::CopyChanges" % (suite)) + for suite in Cnf.subtree("Suite").list(): + copychanges = Cnf.find("Suite::%s::CopyChanges" % (suite)) print "[CopyChanges] Processing suite %s" % (suite) if not copychanges: continue @@ -58,8 +58,8 @@ def do_update(self): c.execute("ALTER TABLE suite ADD COLUMN copydotdak TEXT;") query = "UPDATE suite SET copydotdak = %s WHERE suite_name = %s" #: Update query - for suite in Cnf.SubTree("Suite").List(): - copydotdak = Cnf.Find("Suite::%s::CopyDotDak" % (suite)) + for suite in Cnf.subtree("Suite").list(): + copydotdak = Cnf.find("Suite::%s::CopyDotDak" % (suite)) print "[CopyDotDak] Processing suite %s" % (suite) if not copydotdak: continue @@ -68,8 +68,8 @@ def do_update(self): c.execute("ALTER TABLE suite ADD COLUMN commentsdir TEXT;") query = "UPDATE suite SET commentsdir = %s WHERE suite_name = %s" #: Update query - for suite in Cnf.SubTree("Suite").List(): - commentsdir = Cnf.Find("Suite::%s::CommentsDir" % (suite)) + for suite in Cnf.subtree("Suite").list(): + commentsdir = Cnf.find("Suite::%s::CommentsDir" % (suite)) print "[CommentsDir] Processing suite %s" % (suite) if not commentsdir: continue @@ -78,8 +78,8 @@ def do_update(self): c.execute("ALTER TABLE suite ADD COLUMN overridesuite TEXT;") query = "UPDATE suite SET overridesuite = %s WHERE suite_name = %s" #: Update query - for suite in Cnf.SubTree("Suite").List(): - overridesuite = Cnf.Find("Suite::%s::OverrideSuite" % (suite)) + for suite in Cnf.subtree("Suite").list(): + overridesuite = Cnf.find("Suite::%s::OverrideSuite" % (suite)) print "[OverrideSuite] Processing suite %s" % (suite) if not overridesuite: continue @@ -88,8 +88,8 @@ def do_update(self): c.execute("ALTER TABLE suite ADD COLUMN changelogbase TEXT;") query = "UPDATE suite SET changelogbase = %s WHERE suite_name = %s" #: Update query - for suite in Cnf.SubTree("Suite").List(): - changelogbase = Cnf.Find("Suite::%s::ChangeLogBase" % (suite)) + for suite in Cnf.subtree("Suite").list(): + changelogbase = Cnf.find("Suite::%s::ChangeLogBase" % (suite)) print "[ChangeLogBase] Processing suite %s" % (suite) if not changelogbase: continue @@ -101,4 +101,4 @@ def do_update(self): except psycopg2.ProgrammingError as msg: self.db.rollback() - raise DBUpdateError, "Unable to apply suite config updates, rollback issued. Error message : %s" % (str(msg)) + raise DBUpdateError("Unable to apply suite config updates, rollback issued. Error message : %s" % (str(msg)))