diff options
author | 2015-04-16 18:07:46 +0200 | |
---|---|---|
committer | 2015-04-16 18:07:46 +0200 | |
commit | 3eec058b29cc37af8ff116926d4273b377c7471b (patch) | |
tree | 012864e3d7fce39e419dd70aa1cbabb347231b82 /pyload/network/Browser.py | |
parent | [config] Use get method instead dict access (diff) | |
download | pyload-3eec058b29cc37af8ff116926d4273b377c7471b.tar.xz |
Fix comments
Diffstat (limited to 'pyload/network/Browser.py')
-rw-r--r-- | pyload/network/Browser.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/network/Browser.py b/pyload/network/Browser.py index 61bf523ab..fab7454f3 100644 --- a/pyload/network/Browser.py +++ b/pyload/network/Browser.py @@ -13,10 +13,10 @@ class Browser(object): def __init__(self, bucket=None, options={}): self.log = getLogger("log") - self.options = options #holds pycurl options + self.options = options #: holds pycurl options self.bucket = bucket - self.cj = None # needs to be setted later + self.cj = None #: needs to be setted later self._size = 0 self.renewHTTPRequest() @@ -119,7 +119,7 @@ class Browser(object): :param pwd: string, user:password """ self.options["auth"] = pwd - self.renewHTTPRequest() #we need a new request + self.renewHTTPRequest() #: we need a new request def removeAuth(self): |