]> git.decadent.org.uk Git - dak.git/commitdiff
SpecialAcceptedAutoBuild is a boolean
authorJames Troup <james@nocrew.org>
Tue, 14 May 2002 22:28:45 +0000 (22:28 +0000)
committerJames Troup <james@nocrew.org>
Tue, 14 May 2002 22:28:45 +0000 (22:28 +0000)
katie

diff --git a/katie b/katie
index c2e4798f1103b564983945e4689cc838bbbd6623..adbf134df3160ade60c0532ecb8cce9d4f134766 100755 (executable)
--- a/katie
+++ b/katie
@@ -2,7 +2,7 @@
 
 # Installs Debian packages
 # Copyright (C) 2000, 2001, 2002  James Troup <james@nocrew.org>
-# $Id: katie,v 1.81 2002-05-14 15:35:22 troup Exp $
+# $Id: katie,v 1.82 2002-05-14 22:28:45 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
@@ -39,7 +39,7 @@ import db_access, katie, logging, utils;
 ###############################################################################
 
 # Globals
-katie_version = "$Revision: 1.81 $";
+katie_version = "$Revision: 1.82 $";
 
 Cnf = None;
 Options = None;
@@ -391,7 +391,7 @@ def install ():
 
     # Undo the work done in katie.py(accept) to help auto-building
     # from accepted.
-    if Cnf.get("Dinstall::SpecialAcceptedAutoBuild") and \
+    if Cnf.FindB("Dinstall::SpecialAcceptedAutoBuild") and \
        changes["distribution"].has_key("unstable"):
         now_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()));
         projectB.query("BEGIN WORK");