]> git.decadent.org.uk Git - dak.git/commitdiff
Fix insert into binaries when binary has no source
authorJames Troup <james@nocrew.org>
Fri, 22 Feb 2002 22:49:08 +0000 (22:49 +0000)
committerJames Troup <james@nocrew.org>
Fri, 22 Feb 2002 22:49:08 +0000 (22:49 +0000)
katie

diff --git a/katie b/katie
index 6f6771b686750406b1377c557532cbd927a3a869..0f35f4fe05261211a8e182992c9602044131536b 100755 (executable)
--- a/katie
+++ b/katie
@@ -2,7 +2,7 @@
 
 # Installs Debian packages
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: katie,v 1.71 2002-02-22 02:19:26 troup Exp $
+# $Id: katie,v 1.72 2002-02-22 22:49:08 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -39,7 +39,7 @@ import db_access, katie, logging, utils;
 ###############################################################################
 
 # Globals
-katie_version = "$Revision: 1.71 $";
+katie_version = "$Revision: 1.72 $";
 
 Cnf = None;
 Options = None;
@@ -306,7 +306,7 @@ def install ():
                 projectB.query("INSERT INTO binaries (package, version, maintainer, source, architecture, file, type, sig_fpr) VALUES ('%s', '%s', %d, %d, %d, %d, '%s', %d)"
                                % (package, version, maintainer_id, source_id, architecture_id, files[file]["files id"], type, fingerprint_id));
             else:
-                projectB.query("INSERT INTO binaries (package, version, maintainer, architecture, file, type) VALUES ('%s', '%s', %d, %d, %d, '%s', %d)"
+                projectB.query("INSERT INTO binaries (package, version, maintainer, architecture, file, type, sig_fpr) VALUES ('%s', '%s', %d, %d, %d, '%s', %d)"
                                % (package, version, maintainer_id, architecture_id, files[file]["files id"], type, fingerprint_id));
             for suite in changes["distribution"].keys():
                 suite_id = db_access.get_suite_id(suite);