From e2249661fe4642975570cff8f1bf1f7d70495ed8 Mon Sep 17 00:00:00 2001 From: Alexandre Dupas Date: Sat, 5 Jan 2013 17:27:23 +0100 Subject: [PATCH] Woops, I missed one tricky bit --- songbook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/songbook.py b/songbook.py index 0502c77d..dddba208 100755 --- a/songbook.py +++ b/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 *