diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-01-05 16:55:21 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-01-05 16:55:21 +0100 |
commit | 24c8e48093a2cb62ef1044761bf7bf68098ef151 (patch) | |
tree | 359d236308f2eff9713bcc6cc0018d59c61fb4a6 /module/network | |
parent | little fixes (diff) | |
download | pyload-24c8e48093a2cb62ef1044761bf7bf68098ef151.tar.xz |
fixed #207
Diffstat (limited to 'module/network')
-rw-r--r-- | module/network/Browser.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/network/Browser.py b/module/network/Browser.py index 6d8488b6a..054e099b3 100644 --- a/module/network/Browser.py +++ b/module/network/Browser.py @@ -29,6 +29,7 @@ class Browser(object): lastEffectiveURL = property(lambda self: self.http.lastEffectiveURL) lastURL = property(lambda self: self.http.lastURL, setLastURL) code = property(lambda self: self.http.code) + cookieJar = property(lambda self: self.cj) def setCookieJar(self, cj): self.cj = cj |