added file open mode

This commit is contained in:
Philip Ridout 2013-08-18 20:44:48 +00:00
parent 1478636c97
commit 0c3985f88e
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class SundayPlusImport(SongImport):
for filename in self.importSource:
if self.stopImportFlag:
return
song_file = open(filename)
song_file = open(filename, 'rb')
self.doImportFile(song_file)
song_file.close()