mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Fix #2671: missing syspath on acoustid call
This commit is contained in:
parent
8833fef249
commit
015aee3662
2 changed files with 3 additions and 1 deletions
|
|
@ -295,7 +295,7 @@ def fingerprint_item(log, item, write=False):
|
|||
log.info(u'{0}: fingerprinting',
|
||||
util.displayable_path(item.path))
|
||||
try:
|
||||
_, fp = acoustid.fingerprint_file(item.path)
|
||||
_, fp = acoustid.fingerprint_file(util.syspath(item.path))
|
||||
item.acoustid_fingerprint = fp
|
||||
if write:
|
||||
log.info(u'{0}: writing fingerprint',
|
||||
|
|
|
|||
|
|
@ -33,6 +33,8 @@ Fixes:
|
|||
resulting in unnecessary writes. This most prominently affected the
|
||||
:doc:`/plugins/edit` when saving the text file without making changes to some
|
||||
music. :bug:`2667`
|
||||
* :doc:`/plugins/chroma`: Fix a crash when running the ``submit`` command on
|
||||
Python 3 on Windows with non-ASCII filenames. :bug:`2671`
|
||||
|
||||
For developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue