From: Chris Lamb Date: Fri, 30 Oct 2009 11:48:26 +0000 (+0000) Subject: Add missing configuration initialiser. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=cd64b76b3ae740ffa0f2c08302028ba24c663a3d;p=dak.git Add missing configuration initialiser. Signed-off-by: Chris Lamb --- diff --git a/dak/check_archive.py b/dak/check_archive.py index ceb8cb6d..b9837d30 100755 --- a/dak/check_archive.py +++ b/dak/check_archive.py @@ -475,6 +475,7 @@ def chk_bd_process_dir (unused, dirname, filenames): def check_build_depends(): """ Validate build-dependencies of .dsc files in the archive """ + cnf = Config() os.path.walk(cnf["Dir::Root"], chk_bd_process_dir, None) ################################################################################