summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Nitzo <nitzo2001@yahoo.com> 2016-01-09 18:34:02 +0100
committerGravatar Nitzo <nitzo2001@yahoo.com> 2016-01-09 18:34:02 +0100
commita8fc2ea1b81116f66d13af0620b05371f131429c (patch)
tree5feead155a55898cc67aeea882cb8bde5a4b1e64 /module
parentfix 'exceptions.OSError' object has no attribute 'strip' (diff)
downloadpyload-a8fc2ea1b81116f66d13af0620b05371f131429c.tar.xz
[Hoster] fix #2275, #2277
Diffstat (limited to 'module')
-rw-r--r--module/plugins/internal/Hoster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py
index e50c1e744..4a1499d5c 100644
--- a/module/plugins/internal/Hoster.py
+++ b/module/plugins/internal/Hoster.py
@@ -34,7 +34,7 @@ if not hasattr(__builtin__.property, "setter"):
class Hoster(Base):
__name__ = "Hoster"
__type__ = "hoster"
- __version__ = "0.52"
+ __version__ = "0.53"
__status__ = "stable"
__pattern__ = r'^unmatchable$'
@@ -279,7 +279,7 @@ class Hoster(Base):
self.pyfile.setStatus("downloading")
- dl_folder = self.pyload.config.get('general', 'download_folder')
+ dl_folder = os.path.abspath(self.pyload.config.get('general', 'download_folder'))
dl_dirname = safejoin(dl_folder, self.pyfile.package().folder)
dl_filename = safejoin(dl_dirname, dl_basename)