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