From: Abhishek Lekshmanan Date: Mon, 10 Apr 2017 17:16:56 +0000 (+0200) Subject: script: serve-doc print the port we're serving X-Git-Tag: v12.0.2~110^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=10ff461fc0d37850d19393fe36c971a274b2d0ad;p=ceph-ci.git script: serve-doc print the port we're serving Signed-off-by: Abhishek Lekshmanan --- diff --git a/admin/serve-doc b/admin/serve-doc index 9c1bfb44c79..96da048e587 100755 --- a/admin/serve-doc +++ b/admin/serve-doc @@ -1,4 +1,6 @@ #!/usr/bin/python +from __future__ import print_function + import SimpleHTTPServer import SocketServer import os @@ -24,6 +26,7 @@ httpd = SocketServer.TCPServer( ReusingTCPServer, ) try: + print("Serving doc at port: http://localhost:8080") httpd.serve_forever() except KeyboardInterrupt: pass