From: James Troup Date: Fri, 12 Jul 2002 14:59:08 +0000 (+0000) Subject: Dinstall::CloseBugs is a boolean X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=928fff70a40fa93aed991f1db816e068057b2be4;p=dak.git Dinstall::CloseBugs is a boolean --- diff --git a/katie.py b/katie.py index 7a0f8210..8c31a2dd 100644 --- a/katie.py +++ b/katie.py @@ -2,7 +2,7 @@ # Utility functions for katie # Copyright (C) 2001, 2002 James Troup -# $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;