diff options
author | 2014-12-05 19:18:11 +0100 | |
---|---|---|
committer | 2014-12-05 19:18:11 +0100 | |
commit | 52664e6fe8dd99fc9bb78ea8cf158c17705b6ded (patch) | |
tree | 985a5175f48a277ef56da956d24cff0220313469 /module/plugins/hoster/FreakshareCom.py | |
parent | [UpdateManager] Fix with statement on old env like python 2.5 (diff) | |
download | pyload-52664e6fe8dd99fc9bb78ea8cf158c17705b6ded.tar.xz |
Fix with statement on old env like python 2.5 (2)
Diffstat (limited to 'module/plugins/hoster/FreakshareCom.py')
-rw-r--r-- | module/plugins/hoster/FreakshareCom.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/module/plugins/hoster/FreakshareCom.py b/module/plugins/hoster/FreakshareCom.py index 1a811b007..00c31c528 100644 --- a/module/plugins/hoster/FreakshareCom.py +++ b/module/plugins/hoster/FreakshareCom.py @@ -163,10 +163,6 @@ class FreakshareCom(Hoster): herewego = self.load(self.pyfile.url, None, request_options) # the actual download-Page - # comment this in, when it doesnt work - # with open("DUMP__FS_.HTML", "w") as fp: - # fp.write(herewego) - to_sort = re.findall(r"<input\stype=\".*?\"\svalue=\"(\S*?)\".*?name=\"(\S*?)\"\s.*?\/>", herewego) request_options = dict((n, v) for (v, n) in to_sort) |