Skip to content

Commit

Permalink
Added support for uppercase extensions (.MP3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyris authored and simon-weber committed Sep 5, 2012
1 parent 1c4ab8f commit 6afe980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gmusicapi/api.py
Expand Up @@ -709,7 +709,7 @@ def _temp_mp3_conversion(self, filenames):

try:
for orig_fn in filenames:
extension = orig_fn.split(".")[-1]
extension = orig_fn.split(".")[-1].lower

if extension == "mp3":
all_file_handles.append(file(orig_fn))
Expand Down

0 comments on commit 6afe980

Please sign in to comment.