This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from 5976792 Implement dynamic authid for JSON WebUI frontend. Add a generic metadata top level to the JSON output tree. new 1e90b16 code cleanup The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2gobroker/web/json.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gobroker. commit 1e90b16aaad415dd355b9ea1649ca266bdb39c14 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Mar 7 22:38:27 2014 +0100 code cleanup --- x2gobroker/web/json.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x2gobroker/web/json.py b/x2gobroker/web/json.py index 9574796..801eaac 100644 --- a/x2gobroker/web/json.py +++ b/x2gobroker/web/json.py @@ -157,7 +157,6 @@ class X2GoBrokerWeb(_RequestHandler): payload.update({ 'profiles': broker_backend.list_profiles(username), }) - output += json.dumps(payload, indent=4, sort_keys=True) elif task == 'selectsession': @@ -183,7 +182,7 @@ class X2GoBrokerWeb(_RequestHandler): payload['selected_session'] = selected_session - output += json.dumps(payload, indent=4, sort_keys=True) + output += json.dumps(payload, indent=4, sort_keys=True) self.write(output) return -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git