diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 17:35:08 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 17:35:08 +0100 |
commit | b4a26e4bdcfa697b833abac4b2a500000f24684f (patch) | |
tree | 4a5edabd84a7a9a5f76765f98d879ad1b8ac927a /module/plugins/hoster/Share4webCom.py | |
parent | Fix SSL option in some hoster plugins (diff) | |
download | pyload-b4a26e4bdcfa697b833abac4b2a500000f24684f.tar.xz |
Fix some plugins name
Diffstat (limited to 'module/plugins/hoster/Share4webCom.py')
-rw-r--r-- | module/plugins/hoster/Share4webCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/Share4webCom.py b/module/plugins/hoster/Share4webCom.py index 4634917ad..7a276c1fe 100644 --- a/module/plugins/hoster/Share4webCom.py +++ b/module/plugins/hoster/Share4webCom.py @@ -4,8 +4,8 @@ from module.plugins.hoster.UnibytesCom import UnibytesCom from module.plugins.internal.SimpleHoster import create_getInfo -class Share4webCom(UnibytesCom): - __name__ = "Share4webCom" +class Share4WebCom(UnibytesCom): + __name__ = "Share4WebCom" __type__ = "hoster" __version__ = "0.11" @@ -19,4 +19,4 @@ class Share4webCom(UnibytesCom): HOSTER_DOMAIN = "share4web.com" -getInfo = create_getInfo(UnibytesCom) +getInfo = create_getInfo(Share4WebCom) |