Fix stupid only one episode gets synced error

git-svn-id: svn://svn.berlios.de/gpodder/trunk@364 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-08-09 11:31:08 +00:00
parent 4805e839ae
commit 14eb785419
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Thu, 09 Aug 2007 13:27:18 +0200 <thp@perli.net>
* src/gpodder/libipodsync.py: I shouldn't write code with my brain
switched off. (Added return statement for add_episode_from_channel()
to libipodsync to fix a stupid error with only one episode being
synchronized during a sync run. Thanks to nikosapi for reporting.)
Tue, 07 Aug 2007 20:06:49 +0200 <thp@perli.net>
* src/gpodder/util.py: New "misc utility functions" module that
combines all utility functions that are independend of the rest of

View File

@ -503,6 +503,7 @@ class gPodder_iPodSync( gPodderSyncMethod):
except:
log('(ipodsync) Could not remove temporary file %s', local_filename)
return True
class gPodder_FSSync( gPodderSyncMethod):