The branch, statusflag has been updated via 1b7296655b69600342ad40a60fcb112409eedf20 (commit) from b47d8fe5206d5d4c0cbf77238462f0044cc4357e (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 | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) The diff of changes is: diff --git a/sbin/x2gobroker b/sbin/x2gobroker index b5f3b48..0a67c34 100755 --- a/sbin/x2gobroker +++ b/sbin/x2gobroker @@ -24,6 +24,7 @@ import sys import os import web import argparse +import socket try: import x2gobroker @@ -74,6 +75,9 @@ if __name__ == "__main__": sys.argv.append('') sys.argv[1] = cmdline_args.bind sys.argv[2:] = [] - app = web.application(urls, globals()) - app.internalerror = web.debugerror - app.run() + try: + app = web.application(urls, globals()) + app.internalerror = web.debugerror + app.run() + except socket.error, e: + print (e) 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).