File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class FileTypeError(UnreadableFileError):
96
96
"""
97
97
def __init__ (self , path , mutagen_type = None ):
98
98
if mutagen_type is None :
99
- msg = repr (path )
99
+ msg = u'{0!r}: not in a recognized format' . format (path )
100
100
else :
101
101
msg = u'{0}: of mutagen type {1}' .format (repr (path ), mutagen_type )
102
102
Exception .__init__ (self , msg )
Original file line number Diff line number Diff line change 35
35
non-ASCII filenames. Thanks to :user: `robot3498712 `. :bug: `2592 ` :bug: `2593 `
36
36
* :doc: `/plugins/metasync `: Fix a crash in the Amarok backend when filenames
37
37
contain quotes. Thanks to :user: `aranc23 `. :bug: `2595 ` :bug: `2596 `
38
+ * More informative error messages are displayed when the file format is not
39
+ recognized. :bug: `2599 `
38
40
39
41
40
42
1.4.4 (June 10, 2017)
You can’t perform that action at this time.
0 commit comments