summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-27 19:40:53 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-27 19:40:53 +0100
commitb699a2e16aa61b27ad9096f8389e13fc3a13b116 (patch)
tree4496868a6cbf6c1308a32dddf3d7c7e8ea14d66a
parent[XFileSharingFolder] Fix https://github.com/pyload/pyload/issues/2122 (diff)
parentUpdate ExashareCom.py (diff)
downloadpyload-b699a2e16aa61b27ad9096f8389e13fc3a13b116.tar.xz
Merge pull request #2124 from GammaC0de/patch-6
[ExashareCom] update
-rw-r--r--module/plugins/hoster/ExashareCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ExashareCom.py b/module/plugins/hoster/ExashareCom.py
index c25e20d1c..3a9574631 100644
--- a/module/plugins/hoster/ExashareCom.py
+++ b/module/plugins/hoster/ExashareCom.py
@@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo
class ExashareCom(XFSHoster):
__name__ = "ExashareCom"
__type__ = "hoster"
- __version__ = "0.04"
+ __version__ = "0.05"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?exashare\.com/\w{12}'
@@ -31,7 +31,7 @@ class ExashareCom(XFSHoster):
def handle_free(self, pyfile):
- return super(XFSHoster, self).handle_free(pyfile)
+ return super(ExashareCom, self).handle_free(pyfile)
getInfo = create_getInfo(ExashareCom)