diff options
author | 2014-04-18 16:21:42 +0200 | |
---|---|---|
committer | 2014-04-21 17:23:19 +0200 | |
commit | e484775f328c032ae7fb0182772f581271e8cd13 (patch) | |
tree | cc2b44825b53988218cf56c5cf76bece12697ba6 /pyload/plugins/hoster/NetloadIn.py | |
parent | Using in instead of has_key (diff) | |
download | pyload-e484775f328c032ae7fb0182772f581271e8cd13.tar.xz |
Fixed some PEP8 violations
(cherry picked from commit 1db169b2a7f1df66777a1045b17fc948b1b45c42)
Diffstat (limited to 'pyload/plugins/hoster/NetloadIn.py')
-rw-r--r-- | pyload/plugins/hoster/NetloadIn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/NetloadIn.py b/pyload/plugins/hoster/NetloadIn.py index fa27c58df..4b8842d18 100644 --- a/pyload/plugins/hoster/NetloadIn.py +++ b/pyload/plugins/hoster/NetloadIn.py @@ -40,7 +40,7 @@ def getInfo(urls): size = int(tmp[2]) except: size = 0 - result.append((tmp[1], size, 2 if tmp[3] == "online" else 1, chunk[i] )) + result.append((tmp[1], size, 2 if tmp[3] == "online" else 1, chunk[i])) except: print "Netload prefetch: Error while processing response: " print r |