From d878ff767ef1d4579cdb5e0b9bc3890e27fffc18 Mon Sep 17 00:00:00 2001 From: Mike O'Connor Date: Wed, 18 Feb 2009 09:19:47 -0500 Subject: [PATCH] oops, forgot some changes to contents.py * fix to find the header from dak.conf * had forgotten the change for lowercase packagesnames in daklib/ Signed-off-by: Mike O'Connor --- config/debian/dak.conf | 2 +- dak/contents.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/debian/dak.conf b/config/debian/dak.conf index a31fbfbf..63764997 100644 --- a/config/debian/dak.conf +++ b/config/debian/dak.conf @@ -856,7 +856,7 @@ Urgency }; }; -Content +Contents { Header "contents"; } \ No newline at end of file diff --git a/dak/contents.py b/dak/contents.py index 2e1d05dc..519ebba8 100644 --- a/dak/contents.py +++ b/dak/contents.py @@ -42,8 +42,8 @@ import math import gzip import apt_pkg from daklib import utils -from daklib.Config import Config -from daklib.DBConn import DBConn +from daklib.config import Config +from daklib.dbconn import DBConn ################################################################################ def usage (exit_code=0): @@ -83,7 +83,6 @@ OPTIONS options_prefix = "Contents" options_prefix = "%s::Opitons" % options_prefix -header_prefix = "%s::Header" % options_prefix log = logging.getLogger() @@ -163,12 +162,14 @@ class Contents(object): h = open(os.path.join( Config()["Dir::Templates"], Config()["Contents::Header"] ), "r") self.header = h.read() + print( "header: %s" % self.header ) h.close() except: log.error( "error openeing header file: %d\n%s" % (Config()["Contents::Header"], traceback.format_exc() )) self.header = False else: + print( "no header" ) self.header = False return self.header @@ -269,7 +270,6 @@ class Contents(object): # Get our suites, and the architectures for suite in [i.lower() for i in suites]: suite_id = DBConn().get_suite_id(suite) - arch_list = self._arches(cursor, suite_id) arch_all_id = DBConn().get_architecture_id("all") -- 2.39.2