From 80efae498055524aba7616a1498bd387fc31749d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norman=20J=C3=A4ckel?= Date: Sat, 5 Sep 2015 09:32:30 +0200 Subject: [PATCH] Start browser at 'localhost:8000' in start script. Fixed #1534. --- openslides/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openslides/__main__.py b/openslides/__main__.py index 9eb0b4a39..0672e44a5 100644 --- a/openslides/__main__.py +++ b/openslides/__main__.py @@ -136,7 +136,7 @@ def start(args): execute_from_command_line(['manage.py', 'migrate']) if not args.no_browser: - start_browser('http://127.0.0.1:8000') + start_browser('http://localhost:8000') # Start the webserver execute_from_command_line(['manage.py', 'runserver', '0.0.0.0:8000'])