mirror of
https://github.com/beetbox/beets.git
synced 2025-12-31 21:12:43 +01:00
Fix test_zero
This commit is contained in:
parent
f82c7ec5d1
commit
a91b337d3e
1 changed files with 2 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ import traceback
|
|||
import enum
|
||||
|
||||
from beets import logging
|
||||
from beets.util import displayable_path
|
||||
from beets.util import displayable_path, syspath
|
||||
|
||||
|
||||
__all__ = ['UnreadableFileError', 'FileTypeError', 'MediaFile']
|
||||
|
|
@ -1316,6 +1316,7 @@ class MediaFile(object):
|
|||
By default, MP3 files are saved with ID3v2.4 tags. You can use
|
||||
the older ID3v2.3 standard by specifying the `id3v23` option.
|
||||
"""
|
||||
path = syspath(path)
|
||||
self.path = path
|
||||
|
||||
unreadable_exc = (
|
||||
|
|
|
|||
Loading…
Reference in a new issue