diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 00:46:38 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-16 00:46:38 +0200 |
commit | 11d3e8c59b1addf80a0971ea0ef97347604e45ce (patch) | |
tree | edc3812ab27726fb44e0e6655793c567443f4481 | |
parent | Merge pull request #1358 from GammaC0de/GammaC0de-HostujeNet (diff) | |
download | pyload-11d3e8c59b1addf80a0971ea0ef97347604e45ce.tar.xz |
[HostujeNet] Tiny cleanup
-rw-r--r-- | module/plugins/hoster/HostujeNet.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/module/plugins/hoster/HostujeNet.py b/module/plugins/hoster/HostujeNet.py index 2dabb72d2..ec91e50b9 100644 --- a/module/plugins/hoster/HostujeNet.py +++ b/module/plugins/hoster/HostujeNet.py @@ -1,6 +1,4 @@ # -*- coding: utf-8 -*- -# - import re @@ -19,13 +17,13 @@ class HostujeNet(SimpleHoster): __authors__ = [("GammaC0de", None)] - NAME_PATTERN = r'<input type="hidden" name="name" value="(?P<N>.+?)">' - SIZE_PATTERN = r'<b>Rozmiar:</b> (?P<S>[\d.,]+) (?P<U>[\w^_]+)<br>' + NAME_PATTERN = r'<input type="hidden" name="name" value="(?P<N>.+?)">' + SIZE_PATTERN = r'<b>Rozmiar:</b> (?P<S>[\d.,]+) (?P<U>[\w^_]+)<br>' OFFLINE_PATTERN = ur'Podany plik nie został odnaleziony\.\.\.' def setup(self): - self.multiDL = True + self.multiDL = True self.chunkLimit = 1 |