From 2288412ef22fc0c75980296135373b627edc0bd9 Mon Sep 17 00:00:00 2001 From: Cragin Godley <1012191+cgodley@users.noreply.github.com> Date: Fri, 2 Sep 2022 15:00:07 -0400 Subject: [PATCH] dream.py: fix indentation --- scripts/dream.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dream.py b/scripts/dream.py index b208a27327..f73a8ab7a8 100755 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -282,9 +282,9 @@ def dream_server_loop(t2i, host, port): dream_server = ThreadingDreamServer((host, port)) print("\nStarted Stable Diffusion dream server!") if host == '0.0.0.0': - print(f"Point your browser at http://localhost:{port} or use the host's DNS name or IP address.") + print(f"Point your browser at http://localhost:{port} or use the host's DNS name or IP address.") else: - print(f"Point your browser at http://{host}:{port}.") + print(f"Point your browser at http://{host}:{port}.") try: dream_server.serve_forever()