Make sure ProxyId is hashable

Fixes proxy auth with QtWebEngine
This commit is contained in:
Florian Bruhin 2017-09-20 09:30:58 +02:00
parent 10c84dfb90
commit 31bd4d7ffe

View File

@ -41,7 +41,7 @@ HOSTBLOCK_ERROR_STRING = '%HOSTBLOCK%'
_proxy_auth_cache = {}
@attr.s
@attr.s(frozen=True)
class ProxyId:
"""Information identifying a proxy server."""