summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_packages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-29 16:40:41 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-29 16:41:25 +0200
commitbe14a1b2a4a110a035f9b832b981c017604f6945 (patch)
treeeed8bf64dc277573d5d6738ce372d90490263715 /bin/reproducible_html_packages.py
parentb6a539579ad9f55910dcbc5ebe40cc8e1521db5f (diff)
downloadjenkins.debian.net-be14a1b2a4a110a035f9b832b981c017604f6945.tar.xz
reproducible: html_packages: replace the u'\u2691' with the char itself '⚑'. py 3.2 seems to grok it better
Diffstat (limited to 'bin/reproducible_html_packages.py')
-rwxr-xr-xbin/reproducible_html_packages.py2
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: