diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | bindings/python/ipod.py | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-04-15 Todd Zullinger <tmzullinger at users.sourceforge.net> + + * bindings/python/ipod.py: use the mac-style path for + filename_ipod in the extended info file, like gtkpod does + 2007-04-14 Christophe Fergeau <teuf@gnome.org> * src/itdb_device.c: add itdb_device_supports_artwork and diff --git a/bindings/python/ipod.py b/bindings/python/ipod.py index 199efb1..03bf4c9 100644 --- a/bindings/python/ipod.py +++ b/bindings/python/ipod.py @@ -394,7 +394,7 @@ class Track: self._userdata_into_default_locale('filename'), self)) self['userdata']['transferred'] = 1 - self['userdata']['filename_ipod'] = self.ipod_filename() + self['userdata']['filename_ipod'] = self._track['ipod_path'] return True def ipod_filename(self): |