This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from fbb79f2 presume all clients can pass-in public SSH keys, already new cea9c29 x2gobroker/agent.py: Fix call_broker_agent. Return the agent's result at end of function. (Spotted by Josh Lukens, THANKS\!\!\!). 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/agent.py | 1 + 1 file changed, 1 insertion(+) -- 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 cea9c297d32ee42c2411226ecaa0c70de48adea0 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Apr 13 00:46:23 2014 +0200 x2gobroker/agent.py: Fix call_broker_agent. Return the agent's result at end of function. (Spotted by Josh Lukens, THANKS\!\!\!). --- x2gobroker/agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/x2gobroker/agent.py b/x2gobroker/agent.py index b5f0631..6c7e301 100644 --- a/x2gobroker/agent.py +++ b/x2gobroker/agent.py @@ -96,6 +96,7 @@ def call_broker_agent(username, task, cmdline_args=[], remote_agent=None, **kwar result = _call_local_broker_agent(username=username, task=task, cmdline_args=cmdline_args) else: result = _call_remote_broker_agent(username=username, task=task, cmdline_args=cmdline_args, remote_agent=remote_agent) + return result def _call_local_broker_agent(username, task, cmdline_args=[]): """\ -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git