fixed typo

This commit is contained in:
Martin Wagner 2020-04-07 18:10:42 +02:00
parent f8a9aa0fc0
commit eff74509da

View File

@ -99,7 +99,7 @@ class FocusFrame(Gtk.Frame):
class Cover(object): class Cover(object):
regex=re.compile(r'^\.?(album|cover|folder|front).*\.(gif|jpeg|jpg|png)$', flags=re.IGNORECASE) regex=re.compile(r'^\.?(album|cover|folder|front).*\.(gif|jpeg|jpg|png)$', flags=re.IGNORECASE)
def __init__(self, lib_path, song_file): def __init__(self, lib_path, song_file):
self.lib_path=lib_path or "/" self.lib_path=lib_path or ""
self.path=None self.path=None
if not song_file == None: if not song_file == None:
head, tail=os.path.split(song_file) head, tail=os.path.split(song_file)