hg serve: print a more useful error message if server can't start.
authorBryan O'Sullivan <bos@serpentine.com>
Wed, 31 Aug 2005 11:19:20 -0700
changeset 1177 862f53c1d0f9
parent 1176 ba4ce38b90a3
child 1178 a7abffa4b19f
hg serve: print a more useful error message if server can't start.
mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -1386,7 +1386,10 @@ def serve(ui, repo, **opts):
         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()