From: James Troup <james@nocrew.org>
Date: Fri, 22 Nov 2002 04:07:10 +0000 (+0000)
Subject: AptCnf is global
X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=a84b28e207984eef311303959978741f776a425f;p=dak.git

AptCnf is global
---

diff --git a/rose b/rose
index f127a781..7e68b768 100755
--- a/rose
+++ b/rose
@@ -2,7 +2,7 @@
 
 # Initial setup of an archive
 # Copyright (C) 2002  James Troup <james@nocrew.org>
-# $Id: rose,v 1.1 2002-10-16 02:45:12 troup Exp $
+# $Id: rose,v 1.2 2002-11-22 04:07:10 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
@@ -27,6 +27,7 @@ import apt_pkg;
 ################################################################################
 
 Cnf = None;
+AptCnf = None;
 
 ################################################################################
 
@@ -90,7 +91,7 @@ def create_directories():
 ################################################################################
 
 def main ():
-    global Cnf, projectB;
+    global AptCnf, Cnf, projectB;
 
     Cnf = utils.get_conf()
     apt_pkg.ParseCommandLine(Cnf,[],sys.argv);