Skip to content

Commit 049d1a0

Browse files
committed
Output the url when serving
1 parent df2fc74 commit 049d1a0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

webware/Scripts/WaitressServer.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ def serve(args):
1212
except ImportError as e:
1313
raise RuntimeError('Waitress server is not installed') from e
1414

15-
if args.browser:
16-
scheme = args.url_scheme
17-
host, port = args.host, args.port
18-
prefix = args.url_prefix.strip('/')
19-
if prefix:
20-
prefix += '/'
21-
url = f'{scheme}://{host}:{port}/{prefix}'
15+
scheme = args.url_scheme
16+
host, port = args.host, args.port
17+
path = args.url_prefix.strip('/')
18+
if path:
19+
path = f'/{path}/'
20+
url = f'{scheme}://{host}:{port}{path}'
2221

22+
if args.browser:
2323
import time
2424
import threading
2525
import webbrowser
@@ -87,7 +87,7 @@ def openBrowser():
8787
logger = logging.getLogger('waitress')
8888
logger.setLevel(logLevel)
8989

90-
print("Waitress serving Webware application...")
90+
print(f"Waitress serving Webware application on {url}")
9191
serve(application, **args)
9292

9393

0 commit comments

Comments
 (0)