This is an automated email from the ASF dual-hosted git repository. kmccusker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-milagro-mfa-server.git
commit 82237363cb3238c4fac79bc68d4a2e446bf7a977 Author: Milen Rangelov <[email protected]> AuthorDate: Fri Jun 10 17:01:56 2016 +0300 Return properly formatted mobileService in ServiceHandler() --- servers/rps/rps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/rps/rps.py b/servers/rps/rps.py index 1f8f115..7ca8e0f 100755 --- a/servers/rps/rps.py +++ b/servers/rps/rps.py @@ -861,7 +861,7 @@ class ServiceHandler(BaseHandler): @tornado.gen.engine def get(self): if options.mobileService: - params = str(options.mobileService) + params = json.dumps(options.mobileService) self.write(params) else: self.set_status(403)
