summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Zullinger <tmzullinger@users.sourceforge.net>2008-02-13 08:59:06 +0000
committerTodd Zullinger <tmzullinger@users.sourceforge.net>2008-02-13 08:59:06 +0000
commit1f08b7868f57d16cdbd9dd9f730c4871b18ccb78 (patch)
treedb183de0cb5744fa5650facf575e62d18160dd16
parentde51ff8fd064623806e4dc30f07d60a0677e2174 (diff)
downloadlibgpod-1f08b7868f57d16cdbd9dd9f730c4871b18ccb78.tar.gz
libgpod-1f08b7868f57d16cdbd9dd9f730c4871b18ccb78.tar.xz
libgpod-1f08b7868f57d16cdbd9dd9f730c4871b18ccb78.zip
Track.set_thumbnail() was renamed to Track.set_coverart_from_file() a long time ago
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1949 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r--ChangeLog5
-rw-r--r--bindings/python/ipod.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 63c9922..71ea6ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-13 Todd Zullinger <tmzullinger at users.sourceforge.net>
+
+ * bindings/python/ipod.py: Track.set_thumbnail() was renamed
+ to Track.set_coverart_from_file() a long time ago
+
2008-02-03 Christophe Fergeau <teuf@gnome.org>
* src/db-artwork-debug.c:
diff --git a/bindings/python/ipod.py b/bindings/python/ipod.py
index 20fd510..f8e608e 100644
--- a/bindings/python/ipod.py
+++ b/bindings/python/ipod.py
@@ -315,7 +315,7 @@ class Track:
self._set_userdata_utf8('filename',filename)
possible_image = os.path.join(os.path.split(filename)[0],'folder.jpg')
if os.path.exists(possible_image):
- self.set_thumbnail(possible_image)
+ self.set_coverart_from_file(possible_image)
try:
audiofile = MP3(self._userdata_into_default_locale('filename'))
except Exception, e: