diff options
author | Stefano <l.stickell@yahoo.it> | 2013-09-23 16:11:34 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-09-23 16:11:34 +0200 |
commit | 1beeae4d28dcbbc5cbf814dfebf728f4f544e220 (patch) | |
tree | aa9207e3f7cef48970698b103cf495d42b3028b1 | |
parent | Merge pull request #272 from pulpe/acculoztonet (diff) | |
download | pyload-1beeae4d28dcbbc5cbf814dfebf728f4f544e220.tar.xz |
GamefrontCom: improvement proposed in #279
-rw-r--r-- | module/plugins/hoster/GamefrontCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/GamefrontCom.py b/module/plugins/hoster/GamefrontCom.py index a76eb9b2f..a0ee03f26 100644 --- a/module/plugins/hoster/GamefrontCom.py +++ b/module/plugins/hoster/GamefrontCom.py @@ -8,7 +8,7 @@ class GamefrontCom(Hoster): __name__ = "GamefrontCom" __type__ = "hoster" __pattern__ = r"http://(?:\w*\.)*?gamefront.com/files/[A-Za-z0-9]+" - __version__ = "0.02" + __version__ = "0.03" __description__ = """gamefront.com hoster plugin""" __author_name__ = ("fwannmacher") __author_mail__ = ("felipe@warhammerproject.com") @@ -20,7 +20,7 @@ class GamefrontCom(Hoster): def setup(self): self.resumeDownload = True - self.multiDL = False + self.multiDL = True def process(self, pyfile): self.pyfile = pyfile |