author | Bryan O'Sullivan <bos@serpentine.com> |
Wed, 31 Aug 2005 11:19:20 -0700 | |
changeset 1177 | 862f53c1d0f9 |
parent 1176 | ba4ce38b90a3 |
child 1178 | a7abffa4b19f |
--- a/mercurial/commands.py Wed Aug 31 10:54:46 2005 -0700 +++ b/mercurial/commands.py Wed Aug 31 11:19:20 2005 -0700 @@ -1386,7 +1386,10 @@ if opts[o]: ui.setconfig("web", o, opts[o]) - httpd = hgweb.create_server(repo) + try: + httpd = hgweb.create_server(repo) + except socket.error, inst: + raise util.Abort('cannot start server: ' + inst.args[1]) if ui.verbose: addr, port = httpd.socket.getsockname()