bugfix for downloaddir

git-svn-id: svn://svn.berlios.de/gpodder/trunk@231 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-01-06 14:34:05 +00:00
parent 46e86ef18f
commit 131a1034cd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sat, 6 Jan 2007 15:33:33 +0100 <thp@perli.net>
* src/gpodder/libgpodder.py: Fixed a bug that prevented reading
the download location from the config file. sorry ;)
Sat, 6 Jan 2007 14:45:20 +0100 <thp@perli.net>
* src/gpodder/libgpodder.py: Re-factured gPodderChannelReader
to not have static members when they're not needed; only add

View File

@ -103,7 +103,7 @@ class gPodderLibClass( object):
def __init__( self):
self.gpodderdir = expanduser( "~/.config/gpodder/")
self.createIfNecessary( self.gpodderdir)
self.__download_dir = expanduser('~/gpodder-downloads/')
self.__download_dir = None
self.cachedir = self.gpodderdir + "cache/"
self.createIfNecessary( self.cachedir)
try: