]> git.decadent.org.uk Git - dak.git/commitdiff
fix hideous non-reseting of reject_message in process_it() which was causing any...
authorJames Troup <james@nocrew.org>
Sun, 24 Feb 2002 20:47:22 +0000 (20:47 +0000)
committerJames Troup <james@nocrew.org>
Sun, 24 Feb 2002 20:47:22 +0000 (20:47 +0000)
katie

diff --git a/katie b/katie
index 0f35f4fe05261211a8e182992c9602044131536b..124c1b6f44b447675edf8520e08b07ae271719f5 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.72 2002-02-22 22:49:08 troup Exp $
+# $Id: katie,v 1.73 2002-02-24 20:47:22 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.72 $";
+katie_version = "$Revision: 1.73 $";
 
 Cnf = None;
 Options = None;
@@ -382,6 +382,10 @@ def install ():
 ################################################################################
 
 def process_it (changes_file):
+    global reject_message;
+
+    reject_message = "";
+
     # Absolutize the filename to avoid the requirement of being in the
     # same directory as the .changes file.
     pkg.changes_file = os.path.abspath(changes_file);