]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/dbconn.py
temp_content_associations -> pending_content_associations
[dak.git] / daklib / dbconn.py
index 5bd1d76595717043fb744d1715d33612e8d9c442..6070cded680d560e9cfc4ccca366993eea30c8a7 100755 (executable)
@@ -470,7 +470,7 @@ class DBConn(Singleton):
         try:
 
                 # Remove any already existing recorded files for this package
-            c.execute("""DELETE FROM temp_content_associations
+            c.execute("""DELETE FROM pending_content_associations
                          WHERE package=%(Package)s
                          AND version=%(Version)s""", package )
 
@@ -481,7 +481,7 @@ class DBConn(Singleton):
                 file_id = self.get_or_set_contents_file_id(file)
                 path_id = self.get_or_set_contents_path_id(path)
 
-                c.execute("""INSERT INTO temp_content_associations
+                c.execute("""INSERT INTO pending_content_associations
                                (package, version, filepath, filename)
                            VALUES (%%(Package)s, %%(Version)s, '%d', '%d')""" % (path_id, file_id),
                           package )