X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate39.py;h=8086b515f689c953344a055709762c2b306561c7;hb=40970b8f6af57da3b1a65237e7bc6af7ba77ec73;hp=558dc44fe119a3365c6c636f94c99e89215f9546;hpb=3532610b2e863b9dd0c571fb2dc9538cd3d29f6e;p=dak.git diff --git a/dak/dakdb/update39.py b/dak/dakdb/update39.py index 558dc44f..8086b515 100644 --- a/dak/dakdb/update39.py +++ b/dak/dakdb/update39.py @@ -36,9 +36,9 @@ def do_update(self): print __doc__ try: c = self.db.cursor() - c.execute("INSERT INTO config(name, value) VALUES ('exportpath', '/srv/ftp-master.debian.org/export/changelogs')") + c.execute("INSERT INTO config(name, value) VALUES ('exportpath', 'changelogs')") c.execute("ALTER TABLE suite ADD COLUMN changelog text NULL") - c.execute("UPDATE suite SET changelog = '/srv/ftp-master.debian.org/ftp/dists/testing/ChangeLog' WHERE suite_name = 'testing'") + c.execute("UPDATE suite SET changelog = 'dists/testing/ChangeLog' WHERE suite_name = 'testing'") c.execute("UPDATE config SET value = '39' WHERE name = 'db_revision'") self.db.commit()