This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from 1e90b16 code cleanup new 42060b5 json webUI: fix runtime error 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 42060b568520c5927ba7ba6b6742fb7f757e677b Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Mar 9 12:30:51 2014 +0100 json webUI: fix runtime error --- x2gobroker/web/json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2gobroker/web/json.py b/x2gobroker/web/json.py index 801eaac..c7c8d9f 100644 --- a/x2gobroker/web/json.py +++ b/x2gobroker/web/json.py @@ -182,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