Fixing the previous patches
Patch files for correct usage of QuteSchemeError and general clean up. Closes https://github.com/qutebrowser/qutebrowser/issues/4059
This commit is contained in:
parent
58793d95d7
commit
5b8e0d8d80
@ -93,7 +93,7 @@ class QuteSchemeHandler(QWebEngineUrlSchemeHandler):
|
|||||||
qutescheme.Error:
|
qutescheme.Error:
|
||||||
QWebEngineUrlRequestJob.RequestFailed,
|
QWebEngineUrlRequestJob.RequestFailed,
|
||||||
}
|
}
|
||||||
exctype = e.__type__
|
exctype = type(e)
|
||||||
log.misc.exception("{} while handling qute://* URL".format(
|
log.misc.exception("{} while handling qute://* URL".format(
|
||||||
exctype.__name__))
|
exctype.__name__))
|
||||||
job.fail(errors[exctype])
|
job.fail(errors[exctype])
|
||||||
|
@ -72,7 +72,7 @@ def handler(request, operation, current_url):
|
|||||||
qutescheme.Error:
|
qutescheme.Error:
|
||||||
QNetworkReply.InternalServerError,
|
QNetworkReply.InternalServerError,
|
||||||
}
|
}
|
||||||
exctype = e.__type__
|
exctype = type(e)
|
||||||
log.misc.exception("{} while handling qute://* URL".format(
|
log.misc.exception("{} while handling qute://* URL".format(
|
||||||
exctype.__name__))
|
exctype.__name__))
|
||||||
return networkreply.ErrorNetworkReply(request, str(e), errors[exctype])
|
return networkreply.ErrorNetworkReply(request, str(e), errors[exctype])
|
||||||
|
Loading…
Reference in New Issue
Block a user