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