summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FilefactoryCom.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-07 17:32:49 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-07 17:32:49 +0100
commitd129267e022e1591de5dfbcc118f534a573eb400 (patch)
tree8995fd6c29742671a470667d59e8e6d167ed448b /module/plugins/hoster/FilefactoryCom.py
parentMerge pull request #32 from stickell/patch-1 (diff)
parentVarious fixes in 24 plugins (diff)
downloadpyload-d129267e022e1591de5dfbcc118f534a573eb400.tar.xz
Merge pull request #34 from stickell/fixes
Various fixes in 24 plugins
Diffstat (limited to 'module/plugins/hoster/FilefactoryCom.py')
-rw-r--r--module/plugins/hoster/FilefactoryCom.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/hoster/FilefactoryCom.py b/module/plugins/hoster/FilefactoryCom.py
index 0cd60ce85..66d26c999 100644
--- a/module/plugins/hoster/FilefactoryCom.py
+++ b/module/plugins/hoster/FilefactoryCom.py
@@ -9,7 +9,6 @@ from module.common.json_layer import json_loads
import re
def checkFile(plugin, urls):
- file_info = []
url_dict = {}
for url in urls:
@@ -35,7 +34,7 @@ class FilefactoryCom(Hoster):
__name__ = "FilefactoryCom"
__type__ = "hoster"
__pattern__ = r"http://(?:www\.)?filefactory\.com/file/(?P<id>[a-zA-Z0-9]+).*" # URLs given out are often longer but this is the requirement
- __version__ = "0.35"
+ __version__ = "0.36"
__description__ = """Filefactory.Com File Download Hoster"""
__author_name__ = ("paulking", "zoidberg")
@@ -130,7 +129,7 @@ class FilefactoryCom(Hoster):
url = re.search(self.FILE_URL_PATTERN,waithtml).group('url')
# this may either download our file or forward us to an error page
self.logDebug("Download URL: %s" % url)
- dl = self.download(url)
+ self.download(url)
check = self.checkDownload({"multiple": "You are currently downloading too many files at once.",
"error": '<div id="errorMessage">'})