From a44222fc4467b824255218abfad6aedf199457b9 Mon Sep 17 00:00:00 2001 From: Fabio Tranchitella Date: Sat, 31 May 2008 15:01:03 +0000 Subject: [PATCH] Fixed a typo in write_control: we really want to write the maintainer, so please use the correct field name. --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index c40bde0..d01fffd 100644 --- a/britney.py +++ b/britney.py @@ -820,7 +820,7 @@ class Britney: source = binaries[pkg][SOURCE] output += (k + ": " + source + "\n") if sources[binaries[pkg][SOURCE]][MAINTAINER]: - output += (k + ": " + sources[binaries[pkg][SOURCE]][MAINTAINER] + "\n") + output += ("Maintainer: " + sources[binaries[pkg][SOURCE]][MAINTAINER] + "\n") elif key == PROVIDES: if len(binaries[pkg][key]) > 0: output += (k + ": " + ", ".join(binaries[pkg][key]) + "\n")