From: Mark Hymers Date: Sun, 25 Jan 2009 15:24:13 +0000 (+0000) Subject: fix typo X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=66e52b75f85d576a84bf5b7127b79252378cbad9;p=dak.git fix typo Signed-off-by: Mark Hymers --- diff --git a/dak/init_db.py b/dak/init_db.py index 20102cdf..bbf682af 100755 --- a/dak/init_db.py +++ b/dak/init_db.py @@ -183,7 +183,7 @@ class InitDB(object): def do_section(self): """Initalize the section table.""" - c = projectB.cursor() + c = self.projectB.cursor() c.execute("DELETE FROM section") sect_add = "INSERT INTO section (section) VALUES (%s)"