diff options
author | 2014-04-11 12:15:32 +0200 | |
---|---|---|
committer | 2014-04-11 12:15:32 +0200 | |
commit | d27113cef108461e2363cc4c88c4a1d01222c9e9 (patch) | |
tree | 3869f767de8b53de52a7e8fc32fa99f2b3c32409 /module/plugins/hoster/XVideosCom.py | |
parent | Fix __type__ for crypters (diff) | |
download | pyload-d27113cef108461e2363cc4c88c4a1d01222c9e9.tar.xz |
Fix __config__
Merges vuolter/pyload@83ff313
Diffstat (limited to 'module/plugins/hoster/XVideosCom.py')
-rw-r--r-- | module/plugins/hoster/XVideosCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/XVideosCom.py b/module/plugins/hoster/XVideosCom.py index 48a1f934d..902f627a8 100644 --- a/module/plugins/hoster/XVideosCom.py +++ b/module/plugins/hoster/XVideosCom.py @@ -8,7 +8,9 @@ class XVideosCom(Hoster): __name__ = "XVideos.com" __version__ = "0.1" __pattern__ = r"http://www\.xvideos\.com/video([0-9]+)/.*" - __config__ = [] + __description__ = """XVideos.com hoster plugin""" + __author_name__ = "" + __author_mail__ = "" def process(self, pyfile): site = self.load(pyfile.url) |