mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-19 17:56:19 +03:00
lint
This commit is contained in:
parent
13f430cee4
commit
e2bc9af798
2 changed files with 6 additions and 3 deletions
|
@ -103,7 +103,8 @@ class IPBlacklistingResolver(object):
|
|||
ip_address, self._ip_whitelist, self._ip_blacklist
|
||||
):
|
||||
logger.info(
|
||||
"Dropped %s from DNS resolution to %s due to blacklist" % (ip_address, hostname)
|
||||
"Dropped %s from DNS resolution to %s due to blacklist" %
|
||||
(ip_address, hostname)
|
||||
)
|
||||
has_bad_ip = True
|
||||
|
||||
|
@ -164,7 +165,8 @@ class BlacklistingAgentWrapper(Agent):
|
|||
ip_address, self._ip_whitelist, self._ip_blacklist
|
||||
):
|
||||
logger.info(
|
||||
"Blocking access to %s because of blacklist. Returning 0 results" % (ip_address,)
|
||||
"Blocking access to %s because of blacklist. Returning 0 results" %
|
||||
(ip_address,)
|
||||
)
|
||||
e = SynapseError(404, "No results found")
|
||||
return defer.fail(Failure(e))
|
||||
|
|
|
@ -335,7 +335,8 @@ class PreviewUrlResource(Resource):
|
|||
|
||||
if isinstance(e, DNSLookupError):
|
||||
# DNS lookup returned no results
|
||||
# Note: This will also be the case if the found IP address is blacklisted
|
||||
# Note: This will also be the case if the found IP address
|
||||
# is blacklisted
|
||||
raise SynapseError(
|
||||
404, "No results found", Codes.UNKNOWN
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue