From: Chris Lamb Date: Thu, 29 Oct 2009 22:19:26 +0000 (+0000) Subject: Correct local variable name in Upload.package_info. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98a9c19727ac1dfbffedd54fd696d9153e67a4d8;p=dak Correct local variable name in Upload.package_info. Signed-off-by: Chris Lamb --- diff --git a/daklib/queue.py b/daklib/queue.py index bb5eb75f..10ae6187 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -298,7 +298,7 @@ class Upload(object): ) msg = '' - for title, messages in reasons: + for title, messages in msgs: if messages: msg += '\n\n%s:\n%s' % (title, '\n'.join(messages))