mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04: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