Skip to content

Commit

Permalink
Fix test_zero
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Jun 1, 2015
1 parent f82c7ec commit a91b337
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beets/mediafile.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
import enum

from beets import logging
from beets.util import displayable_path
from beets.util import displayable_path, syspath


__all__ = ['UnreadableFileError', 'FileTypeError', 'MediaFile']
Expand Down Expand Up @@ -1316,6 +1316,7 @@ def __init__(self, path, id3v23=False):
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 = (
Expand Down

0 comments on commit a91b337

Please sign in to comment.