]> git.decadent.org.uk Git - dak.git/commitdiff
use maintaineremail to check for group-maint packages
authorJames Troup <james@nocrew.org>
Sun, 26 Aug 2001 00:36:12 +0000 (00:36 +0000)
committerJames Troup <james@nocrew.org>
Sun, 26 Aug 2001 00:36:12 +0000 (00:36 +0000)
katie

diff --git a/katie b/katie
index cf26804343ea59c541b53fb202d2016e36a89a6b..1649d22d1c33ee2688c08f3df3f266b4afd40df2 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.56 2001-07-28 18:07:58 troup Exp $
+# $Id: katie,v 1.57 2001-08-26 00:36:12 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
@@ -128,7 +128,7 @@ class nmu_p:
                 return 0;
 
         # Some group maintained packages (e.g. Debian QA) are never NMU's
-        if self.group_maint.has_key(changes["maintainername"]):
+        if self.group_maint.has_key(changes["maintaineremail"]):
             return 0;
 
         return 1;
@@ -1388,7 +1388,7 @@ def main():
     Subst = {}
     Subst["__ADMIN_ADDRESS__"] = Cnf["Dinstall::MyAdminAddress"];
     Subst["__BUG_SERVER__"] = Cnf["Dinstall::BugServer"];
-    bcc = "X-Katie: $Revision: 1.56 $"
+    bcc = "X-Katie: $Revision: 1.57 $"
     if Cnf.has_key("Dinstall::Bcc"):
         Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
     else: