]> git.decadent.org.uk Git - dak.git/commitdiff
fix bogus reject on warnings by not prefixing reject strings from check_dsc_against_d...
authorJames Troup <james@nocrew.org>
Wed, 16 Oct 2002 18:56:43 +0000 (18:56 +0000)
committerJames Troup <james@nocrew.org>
Wed, 16 Oct 2002 18:56:43 +0000 (18:56 +0000)
kelly

diff --git a/kelly b/kelly
index 80f1b204c272f9a65cd86642c5ddf4bfe717e505..44d2a4dbf5e7588626262a0c74121087eb096a30 100755 (executable)
--- a/kelly
+++ b/kelly
@@ -2,7 +2,7 @@
 
 # Installs Debian packages
 # Copyright (C) 2000, 2001, 2002  James Troup <james@nocrew.org>
-# $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():