summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-09-24 12:58:57 +0200
committerHolger Levsen <holger@layer-acht.org>2016-09-24 12:58:57 +0200
commite49fc9a644359fda0c25cfc116b99d622386103a (patch)
treec853347773a712f5daa3b6250a7bc59477c6f00f /bin/reproducible_html_notes.py
parent1fa7b9fb976fc79020e4527770bc6b0c68000db7 (diff)
downloadjenkins.debian.net-e49fc9a644359fda0c25cfc116b99d622386103a.tar.xz
reproducible Debian. just ignore unicode errors only
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 3d2a6461..cc115f64 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -401,7 +401,7 @@ def issues_popcon_annotate(issues_list):
issues_by_popcon = sorted(issues, key=lambda p: p[1], reverse=True)
issues_with_popcon = [(p[0], p[1], i<n/4) for i, p in enumerate(issues_by_popcon)]
return sorted(issues_with_popcon, key=lambda p: p[0])
- except:
+ except UnicodeDecodeError:
return issues_list