diff --git a/src/calibre/utils/serve_coffee.py b/src/calibre/utils/serve_coffee.py index 68bf9f5674..e85d102376 100644 --- a/src/calibre/utils/serve_coffee.py +++ b/src/calibre/utils/serve_coffee.py @@ -352,7 +352,7 @@ class Server(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer): # {{{ def serve(resources={}, port=8000, host='0.0.0.0'): Handler.special_resources = resources httpd = Server((host, port), Handler) - print('serving at %s:%d with PID=%d'%(host, port, os.getpid())) + print('serving %s at %s:%d with PID=%d'%(os.getcwdu(), host, port, os.getpid())) try: httpd.serve_forever() except KeyboardInterrupt: