From 9a77e1a44e382320590555595acb0ed486f629b9 Mon Sep 17 00:00:00 2001 From: Mike O'Connor Date: Wed, 14 Jan 2009 11:14:17 -0500 Subject: [PATCH] Get rid of non ascii character in source file. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit There was a ß in utils.py that I think was supposed to be a 0. Either it needs to be changed to a 0 or the character encoding needs to be declared at the top of the source file. I opted to change the character to a 0. Signed-off-by: Mike O'Connor --- daklib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daklib/utils.py b/daklib/utils.py index 4a71d01d..a50a840f 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -1236,7 +1236,7 @@ used.""" args = keywords["EXPKEYSIG"] if len(args) >= 1: key = args[0] - reject("Signature made by expired key ßx%s" % (key)) + reject("Signature made by expired key 0x%s" % (key)) bad = 1 if keywords.has_key("KEYEXPIRED") and not keywords.has_key("GOODSIG"): args = keywords["KEYEXPIRED"] -- 2.39.2