small fix

git-svn-id: svn://svn.berlios.de/gpodder/trunk@234 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-01-15 20:07:05 +00:00
parent f91b886db5
commit 8722a7b49f
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon, 15 Jan 2007 21:06:41 +0100 <thp@perli.net>
* src/gpodder/libopmlreader.py: Fixed a small bug, thanks (again)
to Nick [nikosapi gmail com] for pointing that out :)
Mon, 15 Jan 2007 19:09:57 +0100 <thp@perli.net>
* src/gpodder/libgpodder.py: Fixed a bug with the download dir when
starting off with a fresh gPodder install (thanks to Nick [nikosapi

View file

@ -74,7 +74,7 @@ class opmlReader( DefaultHandler, ErrorHandler):
parser = make_parser()
parser.returns_unicode = True
parser.setContentHandler( self)
parser.setErrorHandler( rssErrorHandler())
parser.setErrorHandler( self)
# no multithreaded access to filename
libgpodder.getLock()
try: