The branch, statusflag has been updated via 30c5d7913cd73b6172673983ee37160f3a5c9f71 (commit) from e9fd1798964afb34fdd2d11a1ec5b0d23628ff65 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: sbin/x2gobroker | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) The diff of changes is: diff --git a/sbin/x2gobroker b/sbin/x2gobroker index 7d37091..3951539 100755 --- a/sbin/x2gobroker +++ b/sbin/x2gobroker @@ -98,6 +98,7 @@ if __name__ == "__main__": x2gobroker.defaults.X2GOBROKER_DEBUG = cmdline_args.debug # some people just give the port but prepend a colon, webpy does not like this, so we strip if off + cmdline_args.bind = cmdline_args.bind.lstrip('*') cmdline_args.bind = cmdline_args.bind.lstrip(':') if ':' in cmdline_args.bind: @@ -105,7 +106,7 @@ if __name__ == "__main__": bind_port = int(bind_port) else: bind_address = None - bind_port = int(cmdline_args) + bind_port = int(cmdline_args.bind) # import classes serving the different web.py URLs import x2gobroker.web.plain hooks/post-receive -- x2gobroker.git (HTTP(S) Session broker for X2Go) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2gobroker.git" (HTTP(S) Session broker for X2Go).