From: Chris Lamb Date: Wed, 28 Oct 2009 09:19:52 +0000 (+0000) Subject: Use new Config api. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3bab75d8f04afa2044152ca3bceb83820a0d859;p=dak Use new Config api. Signed-off-by: Chris Lamb --- diff --git a/daklib/queue.py b/daklib/queue.py index b2ee5e3f..17dbb67c 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1208,7 +1208,7 @@ class Upload(object): return cnf = Config() - tagfile = cnf("Dinstall::LintianTags") + tagfile = cnf["Dinstall::LintianTags"] # Parse the yaml file sourcefile = file(tagfile, 'r') sourcecontent = sourcefile.read()