This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from 39f12ac fix chown/chmod on RuntimeDir new 910bb15 fix option syntax when evoking split_host_address() 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: bin/x2gobroker | 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 910bb15711d30fe3a4cd1a8935feaed9e46b91b4 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Oct 29 15:43:11 2014 +0100 fix option syntax when evoking split_host_address() --- bin/x2gobroker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/x2gobroker b/bin/x2gobroker index e1f89d7..a7d0f6d 100755 --- a/bin/x2gobroker +++ b/bin/x2gobroker @@ -238,7 +238,7 @@ if __name__ == "__main__": if not daemon_logdir.endswith('/'): daemon_logdir += '/' - bind_address, bind_port = x2gobroker.utils.split_host_address(cmdline_args.bind, default_address="0.0.0.0:8080") + bind_address, bind_port = x2gobroker.utils.split_host_address(cmdline_args.bind, default_address="0.0.0.0", default_port=8080) cmdline_args.bind = "[{address}]:{port}".format(address=bind_address, port=bind_port) urls = () -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git