diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-29 16:40:41 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-29 16:41:25 +0200 |
commit | be14a1b2a4a110a035f9b832b981c017604f6945 (patch) | |
tree | eed8bf64dc277573d5d6738ce372d90490263715 | |
parent | b6a539579ad9f55910dcbc5ebe40cc8e1521db5f (diff) | |
download | jenkins.debian.net-be14a1b2a4a110a035f9b832b981c017604f6945.tar.xz |
reproducible: html_packages: replace the u'\u2691' with the char itself '⚑'. py 3.2 seems to grok it better
-rwxr-xr-x | bin/reproducible_html_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 2da881da..ba90b87f 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -90,7 +90,7 @@ def check_package_status(package, suite, nocheck=False): raise status = str(result[0]) version = str(result[1]) - notify_maint = u'\u2691' if int(result[3]) == 1 else '' # that's ⚑ + notify_maint = '⚑' if int(result[3]) == 1 else '' if result[2]: build_date = 'at ' + str(result[2]) + ' UTC' else: |