mirror of
https://github.com/matrix-org/synapse.git
synced 2025-01-28 19:09:18 +00:00
Python isn't JavaScript; have to quote dict keys
This commit is contained in:
parent
25eb769b26
commit
6eb0c8a2e4
@ -61,7 +61,7 @@ class ThirdPartyProtocolServlet(RestServlet):
|
||||
if protocol in protocols:
|
||||
defer.returnValue((200, protocols[protocol]))
|
||||
else:
|
||||
defer.returnValue((404, {error: "Unknown protocol"}))
|
||||
defer.returnValue((404, {"error": "Unknown protocol"}))
|
||||
|
||||
|
||||
class ThirdPartyUserServlet(RestServlet):
|
||||
|
Loading…
Reference in New Issue
Block a user