summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-12-15 01:23:55 +0100
committerGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-12-15 01:23:55 +0100
commit2cc61df5222c193259b68ee37bb003f9f6e9e1cc (patch)
tree66cb95bdd8a61f3809be88b69c43e9416ab3fa04 /module
parent[UpdateManager] rename reserved words (diff)
downloadpyload-2cc61df5222c193259b68ee37bb003f9f6e9e1cc.tar.xz
[Hoster] small bug fix
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 bbe37f39f..f5ba13875 100644
--- a/module/plugins/internal/Hoster.py
+++ b/module/plugins/internal/Hoster.py
@@ -15,7 +15,7 @@ from module.plugins.internal.utils import encode, exists, fixurl, fs_join, parse
class Hoster(Base):
__name__ = "Hoster"
__type__ = "hoster"
- __version__ = "0.45"
+ __version__ = "0.46"
__status__ = "stable"
__pattern__ = r'^unmatchable$'
@@ -226,7 +226,7 @@ class Hoster(Base):
disposition=disposition)
except BadHeader, e:
- self.req.code = e.code
+ self.req.http.code = e.code
raise BadHeader(e)
finally: