diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-09-24 12:58:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-09-24 12:58:57 +0200 |
commit | e49fc9a644359fda0c25cfc116b99d622386103a (patch) | |
tree | c853347773a712f5daa3b6250a7bc59477c6f00f /bin | |
parent | 1fa7b9fb976fc79020e4527770bc6b0c68000db7 (diff) | |
download | jenkins.debian.net-e49fc9a644359fda0c25cfc116b99d622386103a.tar.xz |
reproducible Debian. just ignore unicode errors only
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 2 |
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 |