diff options
author | Nathanael Santoso <73165142+nart4hire@users.noreply.github.com> | 2023-04-04 06:57:39 +0000 |
---|---|---|
committer | Nathanael Santoso <73165142+nart4hire@users.noreply.github.com> | 2023-04-04 06:57:39 +0000 |
commit | 2edf73b38fbea4ce67c38edafea8a8983b9435b5 (patch) | |
tree | 424fad3313745372d1f22a09cd68e47b6e002a8c /modules | |
parent | 5ebe3b25044efac959c4d8f208dd17d6f1e5ce8a (diff) | |
download | stable-diffusion-webui-gfx803-2edf73b38fbea4ce67c38edafea8a8983b9435b5.tar.gz stable-diffusion-webui-gfx803-2edf73b38fbea4ce67c38edafea8a8983b9435b5.tar.bz2 stable-diffusion-webui-gfx803-2edf73b38fbea4ce67c38edafea8a8983b9435b5.zip |
Improved message clarity
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ngrok.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ngrok.py b/modules/ngrok.py index 90268bf1..5302b6a8 100644 --- a/modules/ngrok.py +++ b/modules/ngrok.py @@ -5,7 +5,7 @@ def connect(token, port, region): existing = ngrok.get_tunnels() if existing: public_url = existing[0].public_url - print(f'ngrok connected to localhost:{port}! URL: {public_url}\n' + print(f'ngrok has already been connected to localhost:{port}! URL: {public_url}\n' 'You can use this link after the launch is complete.') return |