diff options
author | 2012-10-27 01:57:45 +0200 | |
---|---|---|
committer | 2012-10-27 01:57:45 +0200 | |
commit | e195f96d1a4d31a1e59d7f23971edd14a1edd220 (patch) | |
tree | 68a1a3bbe7c282a1d45b0ee824aa7958c98cd8a2 /module/plugins/hoster/GamefrontCom.py | |
parent | gamefront.com plugin - thanx fwannmacher - closed #705 (diff) | |
download | pyload-e195f96d1a4d31a1e59d7f23971edd14a1edd220.tar.xz |
youtube - add 3D formats, update playlist crypter
Diffstat (limited to 'module/plugins/hoster/GamefrontCom.py')
-rw-r--r-- | module/plugins/hoster/GamefrontCom.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/GamefrontCom.py b/module/plugins/hoster/GamefrontCom.py index 1e3ca77e5..34fda09d2 100644 --- a/module/plugins/hoster/GamefrontCom.py +++ b/module/plugins/hoster/GamefrontCom.py @@ -1,12 +1,13 @@ import re from module.plugins.Hoster import Hoster from module.network.RequestFactory import getURL +from module.utils import parseFileSize class GamefrontCom(Hoster): __name__ = "GamefrontCom" __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?gamefront.com/files/[A-Za-z0-9]+" - __version__ = "0.01" + __version__ = "0.02" __description__ = """gamefront.com hoster plugin""" __author_name__ = ("fwannmacher") __author_mail__ = ("felipe@warhammerproject.com") |