Fix more lint
This commit is contained in:
parent
d299fd260c
commit
f8f74400c6
@ -29,10 +29,10 @@ def custom_headers():
|
|||||||
headers[b'DNT'] = dnt
|
headers[b'DNT'] = dnt
|
||||||
headers[b'X-Do-Not-Track'] = dnt
|
headers[b'X-Do-Not-Track'] = dnt
|
||||||
|
|
||||||
custom_headers = config.get('network', 'custom-headers')
|
config_headers = config.get('network', 'custom-headers')
|
||||||
if custom_headers is not None:
|
if config_headers is not None:
|
||||||
for header, value in custom_headers.items():
|
for header, value in config_headers.items():
|
||||||
headers[header.encode('ascii')] = value.encode('ascii')
|
headers[header.encode('ascii')] = value.encode('ascii')
|
||||||
|
|
||||||
accept_language = config.get('network', 'accept-language')
|
accept_language = config.get('network', 'accept-language')
|
||||||
if accept_language is not None:
|
if accept_language is not None:
|
||||||
|
@ -229,7 +229,8 @@ def check_qt_version(args):
|
|||||||
text = ("Fatal error: Qt and PyQt >= 5.2.0 are required, but {} is "
|
text = ("Fatal error: Qt and PyQt >= 5.2.0 are required, but {} is "
|
||||||
"installed.".format(qVersion()))
|
"installed.".format(qVersion()))
|
||||||
_die(text)
|
_die(text)
|
||||||
elif args.backend == 'webengine' and qtutils.version_check('5.6.0', operator.lt):
|
elif args.backend == 'webengine' and qtutils.version_check('5.6.0',
|
||||||
|
operator.lt):
|
||||||
text = ("Fatal error: Qt and PyQt >= 5.6.0 are required for "
|
text = ("Fatal error: Qt and PyQt >= 5.6.0 are required for "
|
||||||
"QtWebEngine support, but {} is installed.".format(qVersion()))
|
"QtWebEngine support, but {} is installed.".format(qVersion()))
|
||||||
_die(text)
|
_die(text)
|
||||||
|
Loading…
Reference in New Issue
Block a user