]> git.decadent.org.uk Git - dak.git/commitdiff
Look at Changed-By too when detecting NMUs [aj].
authorJames Troup <james@nocrew.org>
Wed, 14 Mar 2001 05:12:53 +0000 (05:12 +0000)
committerJames Troup <james@nocrew.org>
Wed, 14 Mar 2001 05:12:53 +0000 (05:12 +0000)
katie

diff --git a/katie b/katie
index a83cf069f460779e5b3d3a69ad51eeffb60a1ba2..3162b31eb54668672e1ce9606fbae7c3dbc0f476 100755 (executable)
--- a/katie
+++ b/katie
@@ -2,7 +2,7 @@
 
 # Installs Debian packaes
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: katie,v 1.30 2001-03-02 02:36:23 troup Exp $
+# $Id: katie,v 1.31 2001-03-14 05:12:53 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
@@ -1121,7 +1121,9 @@ Installed:
     (dsc_rfc822, dsc_name, dsc_email) = utils.fix_maintainer (dsc.get("maintainer",Cnf["Dinstall::MyEmailAddress"]));
     bugs = changes["closes"].keys()
     bugs.sort()
-    if dsc_name == changes["maintainername"]:
+    # changes["changedbyname"] == dsc_name is probably never true, but better
+    # safe than sorry
+    if dsc_name == changes["maintainername"] and (changes["changedbyname"] == "" or changes["changedbyname"] == dsc_name):
         summary = summary + "Closing bugs: "
         for bug in bugs:
             summary = summary + "%s " % (bug)