]> git.decadent.org.uk Git - dak.git/commitdiff
Get rid of non ascii character in source file.
authorMike O'Connor <stew@vireo.org>
Wed, 14 Jan 2009 16:14:17 +0000 (11:14 -0500)
committerMike O'Connor <stew@vireo.org>
Wed, 14 Jan 2009 16:14:17 +0000 (11:14 -0500)
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 <stew@vireo.org>
daklib/utils.py

index 4a71d01d458b0c76c2e2e217169328950525f701..a50a840f22b573dc08fd6710109d443de91dd41a 100755 (executable)
@@ -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"]