summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/SmoozedCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-11 20:20:43 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-11 20:20:43 +0100
commit187586c77f750340c2d8c84781c82a3e612f17c3 (patch)
tree6ef89bf039cff4ec6149c2e9de8e3794b714cb9b /module/plugins/hoster/SmoozedCom.py
parent[NitroflareCom] Fix bad import (diff)
downloadpyload-187586c77f750340c2d8c84781c82a3e612f17c3.tar.xz
Fix getAccount in some plugins
Diffstat (limited to 'module/plugins/hoster/SmoozedCom.py')
-rw-r--r--module/plugins/hoster/SmoozedCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/SmoozedCom.py b/module/plugins/hoster/SmoozedCom.py
index a5116db16..bd653ff59 100644
--- a/module/plugins/hoster/SmoozedCom.py
+++ b/module/plugins/hoster/SmoozedCom.py
@@ -7,7 +7,7 @@ from module.plugins.internal.MultiHoster import MultiHoster
class SmoozedCom(MultiHoster):
__name__ = "SmoozedCom"
__type__ = "hoster"
- __version__ = "0.02"
+ __version__ = "0.03"
__pattern__ = r'^unmatchable$' #: Since we want to allow the user to specify the list of hoster to use we let MultiHoster.coreReady
@@ -29,7 +29,7 @@ class SmoozedCom(MultiHoster):
pyfile.name = ".".join(temp)
# Check the link
- get_data = {'session_key': self.account.getAccountData(self.user)['session_key'],
+ get_data = {'session_key': self.account.getAccountInfo(self.user)['session'],
'url' : pyfile.url}
data = json_loads(self.load("http://www2.smoozed.com/api/check", get=get_data))