summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-10-06 11:54:21 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-10-06 11:54:21 +0200
commitea3220f18a0127ae8424b9079f654fa188b96f21 (patch)
tree486e6b3bdbac8fcc6608feb79e229ff74f5ef7c8 /module
parentgeneral js api + pyv8 support (diff)
downloadpyload-ea3220f18a0127ae8424b9079f654fa188b96f21.tar.xz
closed #148
Diffstat (limited to 'module')
-rw-r--r--module/PluginManager.py2
-rw-r--r--module/plugins/Plugin.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/module/PluginManager.py b/module/PluginManager.py
index ab7245db2..e7a00a835 100644
--- a/module/PluginManager.py
+++ b/module/PluginManager.py
@@ -84,7 +84,7 @@ class PluginManager():
self.accountPlugins = self.parse(_("Account"), "accounts", create=True)
self.hookPlugins = self.parse(_("Hook"), "hooks")
- self.log.info(_("created index of plugins"))
+ self.log.debug(_("created index of plugins"))
def parse(self, typ, folder, create=False, pattern=False, home={}):
"""
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py
index 1568b0917..2b2ee2414 100644
--- a/module/plugins/Plugin.py
+++ b/module/plugins/Plugin.py
@@ -276,7 +276,7 @@ class Plugin(object):
self.pyfile.setStatus("downloading")
- download_folder = self.config['general']['download_folder']
+ download_folder = self.config['general']['download_folder'].decode("utf8")
location = join(download_folder.encode(sys.getfilesystemencoding(), "replace"), self.pyfile.package().folder.replace(":", "").encode(sys.getfilesystemencoding(), "replace")) # remove : for win compability