diff options
| author | 2014-07-20 03:02:09 +0200 | |
|---|---|---|
| committer | 2014-07-20 03:34:54 +0200 | |
| commit | 9395182da7afed55a29bde1c7cbefe4204e783f0 (patch) | |
| tree | 14c5f5f2dc5ea428c4625e8ce9208c5d77d1fc18 /module/plugins/accounts/QuickshareCz.py | |
| parent | [account] self.html -> html (where was possible) (diff) | |
| download | pyload-9395182da7afed55a29bde1c7cbefe4204e783f0.tar.xz | |
Store all re.search/match object as "m" instead "found"
Diffstat (limited to 'module/plugins/accounts/QuickshareCz.py')
| -rw-r--r-- | module/plugins/accounts/QuickshareCz.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/module/plugins/accounts/QuickshareCz.py b/module/plugins/accounts/QuickshareCz.py index 8e5a18689..34a3a971a 100644 --- a/module/plugins/accounts/QuickshareCz.py +++ b/module/plugins/accounts/QuickshareCz.py @@ -33,9 +33,9 @@ class QuickshareCz(Account):      def loadAccountInfo(self, user, req):          html = req.load("http://www.quickshare.cz/premium", decode=True) -        found = re.search(r'Stav kreditu: <strong>(.+?)</strong>', html) -        if found: -            trafficleft = parseFileSize(found.group(1)) / 1024 +        m = re.search(r'Stav kreditu: <strong>(.+?)</strong>', html) +        if m: +            trafficleft = parseFileSize(m.group(1)) / 1024              premium = True if trafficleft else False          else:              trafficleft = None | 
