mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Fix #2299: non-Unicode logging in badfiles
This commit is contained in:
parent
957bfacf21
commit
991c9936fd
2 changed files with 4 additions and 2 deletions
|
|
@ -105,7 +105,7 @@ class BadFiles(BeetsPlugin):
|
|||
ui.print_(u"{}: checker exited withs status {}"
|
||||
.format(ui.colorize('text_error', dpath), status))
|
||||
for line in output:
|
||||
ui.print_(" {}".format(displayable_path(line)))
|
||||
ui.print_(u" {}".format(displayable_path(line)))
|
||||
elif errors > 0:
|
||||
ui.print_(u"{}: checker found {} errors or warnings"
|
||||
.format(ui.colorize('text_warning', dpath), errors))
|
||||
|
|
|
|||
|
|
@ -4,7 +4,9 @@ Changelog
|
|||
1.4.2 (in development)
|
||||
----------------------
|
||||
|
||||
Changelog goes here!
|
||||
Fixes:
|
||||
|
||||
* :doc:`/plugins/badfiles`: Fix a crash on non-ASCII filenames. :bug:`2299`
|
||||
|
||||
|
||||
1.4.1 (November 25, 2016)
|
||||
|
|
|
|||
Loading…
Reference in a new issue