bugfix from mike coulson to fix logger error on python<2.4

git-svn-id: svn://svn.berlios.de/gpodder/trunk@250 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-02-05 16:50:25 +00:00
parent 11f4bc1764
commit 405506b3a0
4 changed files with 11 additions and 3 deletions

View File

@ -17,6 +17,7 @@ Thanks to all the other patch writers:
Seth Remington <sremington@saberlogic.com> (several important bugfixes)
Robert Young <robertkyoung@gmail.com> (path fix patch for MP3 player sync)
José Luis Fustel <dr_psy@terra.es> (Fix for iPod nano podcast flags)
Mike Coulson <miketcoulson@gmail.com> (Logger bugfix for Python < 2.4)
Thanks for bug reports and other suggestions go out to:

View File

@ -1,3 +1,10 @@
Mon, 5 Feb 2007 17:47:07 +0100 <thp@perli.net>
* src/gpodder/libgpodder.py: Applied patch from Mike Coulson
(miketcoulson gmail com) to fix lexists fallback bug related to
late logger import - thanks!
* AUTHORS: Added Mike Coulson to list of patch writers
* bin/gpodder: Pushed version + svn release date
Sun, 4 Feb 2007 10:38:27 +0100 <thp@perli.net>
* src/gpodder/liblogger.py: Write log output to stdout again
* bin/gpodder: Version is now a "+svn" version again as we're

View File

@ -26,8 +26,8 @@
# PLEASE DO NOT CHANGE FORMAT OF __version__ LINE (setup.py reads this)
__author__ = "Thomas Perl <thp@perli.net>"
__version__ = "0.8.9+svn20070204"
__date__ = "2007-02-04"
__version__ = "0.8.9+svn20070205"
__date__ = "2007-02-05"
__copyright__ = "Copyright (c) 2005-2007 %s. All rights reserved." % __author__
__licence__ = "GPL"

View File

@ -37,6 +37,7 @@ from xml.sax import make_parser
from string import strip
from os.path import expanduser
from os.path import exists
from liblogger import log
try:
from os.path import lexists
except:
@ -67,7 +68,6 @@ from librssreader import rssReader
from libpodcasts import podcastChannel
from libpodcasts import DownloadHistory
from libplayers import dotdesktop_command
from liblogger import log
from gtk.gdk import PixbufLoader