Changeset 39400 for titan/mediathek/localhoster/lib
- Timestamp:
- 12/02/16 23:31:14 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/mediathek/localhoster/lib/net.py
r39388 r39400 51 51 ANDROID_USER_AGENT = 'Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.114 Mobile Safari/537.36' 52 52 53 _cj = cookielib. LWPCookieJar()53 _cj = cookielib.MozillaCookieJar() 54 54 55 55 _proxy = None … … 87 87 88 88 # empty jar for each instance rather than scope of the import 89 self._cloudflare_jar = cookielib. LWPCookieJar()89 self._cloudflare_jar = cookielib.MozillaCookieJar() 90 90 91 91 self.cloudflare = cloudflare … … 170 170 171 171 if cloudflare_jar: 172 self._cloudflare_jar = cookielib. LWPCookieJar()172 self._cloudflare_jar = cookielib.MozillaCookieJar() 173 173 jar = self._cloudflare_jar 174 174 else:
Note: See TracChangeset
for help on using the changeset viewer.