From 073b487a41897e27b0e391ebe573cfec739c7030 Mon Sep 17 00:00:00 2001 From: James Troup Date: Wed, 16 Oct 2002 18:56:43 +0000 Subject: [PATCH] fix bogus reject on warnings by not prefixing reject strings from check_dsc_against_db() which does it's own prefixing. --- kelly | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kelly b/kelly index 80f1b204..44d2a4db 100755 --- a/kelly +++ b/kelly @@ -2,7 +2,7 @@ # Installs Debian packages # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: kelly,v 1.1 2002-10-16 02:47:32 troup Exp $ +# $Id: kelly,v 1.2 2002-10-16 18:56:43 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 -kelly_version = "$Revision: 1.1 $"; +kelly_version = "$Revision: 1.2 $"; Cnf = None; Options = None; @@ -125,7 +125,7 @@ def check(): elif files[file]["type"] == "dsc": reject(Katie.check_source_against_db(file)); (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file); - reject(reject_msg); + reject(reject_msg, ""); # Check the package is still in the override tables for suite in changes["distribution"].keys(): -- 2.39.5