]> git.decadent.org.uk Git - dak.git/commitdiff
handle changes to do_reject
authorJames Troup <james@nocrew.org>
Sun, 21 Apr 2002 15:38:54 +0000 (15:38 +0000)
committerJames Troup <james@nocrew.org>
Sun, 21 Apr 2002 15:38:54 +0000 (15:38 +0000)
lisa

diff --git a/lisa b/lisa
index 47289220e8907654e89df3b87c3467b9b0b27680..e17666e87cf838172a138ed5c1b742c252780b29 100755 (executable)
--- a/lisa
+++ b/lisa
@@ -2,7 +2,7 @@
 
 # Handles NEW and BYHAND packages
 # Copyright (C) 2001  James Troup <james@nocrew.org>
-# $Id: lisa,v 1.7 2002-04-20 13:13:15 troup Exp $
+# $Id: lisa,v 1.8 2002-04-21 15:38:54 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
@@ -58,7 +58,7 @@ import apt_pkg, apt_inst;
 import db_access, fernanda, katie, logging, utils;
 
 # Globals
-lisa_version = "$Revision: 1.7 $";
+lisa_version = "$Revision: 1.8 $";
 
 Cnf = None;
 Options = None;
@@ -572,9 +572,10 @@ def do_new():
         elif answer == 'E':
             new = edit_overrides (new);
         elif answer == 'M':
-            Katie.do_reject(1, Options["Manual-Reject"]);
-            os.unlink(Katie.pkg.changes_file[:-8]+".katie");
-            done = 1;
+            aborted = Katie.do_reject(1, Options["Manual-Reject"]);
+            if not aborted:
+                os.unlink(Katie.pkg.changes_file[:-8]+".katie");
+                done = 1;
         elif answer == 'S':
             done = 1;
         elif answer == 'Q':