Browse Source

Woops, I missed one tricky bit

original/refs/heads/split-songs
Alexandre Dupas 12 years ago
parent
commit
e2249661fe
  1. 4
      songbook.py

4
songbook.py

@ -21,8 +21,8 @@ class Song:
self.artist = artist
self.album = album
self.path = path
def __repr__(self):
return repr((self.title, self.artist, self.album, self.path))
def __repr__(self):
return repr((self.title, self.artist, self.album, self.path))
from xdg.BaseDirectory import *

Loading…
Cancel
Save