]> git.decadent.org.uk Git - dak.git/commitdiff
Dinstall::CloseBugs is a boolean
authorJames Troup <james@nocrew.org>
Fri, 12 Jul 2002 14:59:08 +0000 (14:59 +0000)
committerJames Troup <james@nocrew.org>
Fri, 12 Jul 2002 14:59:08 +0000 (14:59 +0000)
katie.py

index 7a0f8210818eab44beff62ad420add5166cd7f5f..8c31a2dd556a714c138515eb23d584593887be1b 100644 (file)
--- a/katie.py
+++ b/katie.py
@@ -2,7 +2,7 @@
 
 # Utility functions for katie
 # Copyright (C) 2001, 2002  James Troup <james@nocrew.org>
-# $Id: katie.py,v 1.24 2002-06-08 00:19:55 troup Exp $
+# $Id: katie.py,v 1.25 2002-07-12 14:59:08 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
@@ -356,7 +356,7 @@ distribution.""";
                 mail_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.announce");
                 utils.send_mail (mail_message, "");
 
-        if Cnf.get("Dinstall::CloseBugs"):
+        if Cnf.FindB("Dinstall::CloseBugs"):
             summary = self.close_bugs(summary, action);
 
         return summary;