File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ def serve(args):
12
12
except ImportError as e :
13
13
raise RuntimeError ('Waitress server is not installed' ) from e
14
14
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 } '
22
21
22
+ if args .browser :
23
23
import time
24
24
import threading
25
25
import webbrowser
@@ -87,7 +87,7 @@ def openBrowser():
87
87
logger = logging .getLogger ('waitress' )
88
88
logger .setLevel (logLevel )
89
89
90
- print ("Waitress serving Webware application... " )
90
+ print (f "Waitress serving Webware application on { url } " )
91
91
serve (application , ** args )
92
92
93
93
You can’t perform that action at this time.
0 commit comments