X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=kelly;h=68d59a0b4e66ad28d4479db39be697870c2bb54b;hb=9e78deadeefb78533360179077669f763f0f483c;hp=37a4ac4f64f98218bb0f7c955b842bb4d73ba8b5;hpb=33f1fc6121322c1ace0bdfec4aa55f23770af680;p=dak.git diff --git a/kelly b/kelly index 37a4ac4f..68d59a0b 100755 --- a/kelly +++ b/kelly @@ -2,7 +2,7 @@ # Installs Debian packages from queue/accepted into the pool # Copyright (C) 2000, 2001, 2002, 2003, 2004 James Troup -# $Id: kelly,v 1.14 2004-03-11 00:20:51 troup Exp $ +# $Id: kelly,v 1.15 2005-01-14 14:07:17 ajt 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 @@ -37,7 +37,7 @@ import db_access, katie, logging, utils; ############################################################################### # Globals -kelly_version = "$Revision: 1.14 $"; +kelly_version = "$Revision: 1.15 $"; Cnf = None; Options = None; @@ -123,9 +123,9 @@ def check(): # Version and file overwrite checks if not installing_to_stable: if files[file]["type"] == "deb": - reject(Katie.check_binary_against_db(file)); + reject(Katie.check_binary_against_db(file), ""); elif files[file]["type"] == "dsc": - reject(Katie.check_source_against_db(file)); + reject(Katie.check_source_against_db(file), ""); (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file); reject(reject_msg, "");