Skip to content
Commits on Source (4)
......@@ -59,6 +59,7 @@ lintian:
- bad-version-number
- binary-in-etc
- build-info-in-binary-control-file-section
- changelog-distribution-does-not-match-changes-file
- conflicting-negation-in-source-relation
- control-file-has-bad-owner
- control-file-has-bad-permissions
......
......@@ -660,7 +660,7 @@ def check_changes(changes_filename):
changes = utils.parse_changes(changes_filename)
except UnicodeDecodeError:
utils.warn("Encoding problem with changes file %s" % (changes_filename))
print(display_changes(changes['distribution'], changes_filename))
print(display_changes(changes['distribution'], changes_filename).encode('utf-8'))
files = utils.build_file_list(changes)
for f in files.keys():
......