fix bug in CLI interface, thanks to Thomas Matthijs

git-svn-id: svn://svn.berlios.de/gpodder/trunk@333 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-06-03 13:44:24 +00:00
parent e5c6525f9b
commit dfc1515dab
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Sun, 3 Jun 2007 15:41:30 +0200 <thp@perli.net>
* src/gpodder/console.py: Fix a problem with URLs containing the "%"
character and Python format strings; thanks go out to Thomas
Matthijs <axxo gentoo.org> for reporting this bug and help fixing it
Fri, 25 May 2007 12:04:20 +0200 <thp@perli.net>
* src/gpodder/gpodder.py: Update the feed cache after everything
else has been changed, so that we now really have a working

View File

@ -101,7 +101,7 @@ def del_channel( url):
def update():
urlcallback = lambda url: msg( 'update', url)
urlcallback = lambda url: msg( 'update', url.replace('%','%%'))
errorcallback = lambda s: msg( 'error', s)
return gPodderChannelReader().read( True, callback_url = urlcallback, callback_error = errorcallback)