Package: dak
Version: 1.0-8
Severity: minor
Tags: patch
Hi,
fernanda checks the options in F_re_nanda::Options. The attached trivial
patch fixes this. (Submitted as minor due to the lack of practical
impact given that the only potential entry in Fernanda::Options
currently is Help :)
The issue is also present in examine-package.py in the current bzr copy
of dak on ftp-master, as I'm assuming the typo meant it was overlooked
during James' Great Renaming[tm].
Regards,
Adam
--- dak-1.0/fernanda.py.orig 2006-10-27 20:45:13.000000000 +0100
+++ dak-1.0/fernanda.py 2006-10-27 20:45:31.000000000 +0100
@@ -396,7 +396,7 @@
Arguments = [('h',"help","Fernanda::Options::Help")];
for i in [ "help" ]:
- if not Cnf.has_key("Frenanda::Options::%s" % (i)):
+ if not Cnf.has_key("Fernanda::Options::%s" % (i)):
Cnf["Fernanda::Options::%s" % (i)] = "";
args = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);