When launching the application on Windows (yamldash.app.run function), no web browser window opens and the message You'll need a new app to open this 127.0.0.1 link is displayed.
Adding the http:// protocol in front of the 127.0.0.1 address in the webbrowser.open() call solves the issue.
|
webbrowser.open("127.0.0.1:8080", new=2) |
When launching the application on Windows (
yamldash.app.runfunction), no web browser window opens and the message You'll need a new app to open this 127.0.0.1 link is displayed.Adding the
http://protocol in front of the127.0.0.1address in thewebbrowser.open()call solves the issue.YAMLDash/yamldash/app.py
Line 43 in 9ecacb0