Merge pull request #1527 from ostcar/start_browser_on_localhost

Start the browser on 127.0.0.1.
This commit is contained in:
Norman Jäckel 2015-06-12 13:01:00 +02:00
commit a033f74ba1
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ def start(args):
execute_from_command_line(['manage.py', 'migrate'])
if not args.no_browser:
start_browser('http://0.0.0.0:8000')
start_browser('http://127.0.0.1:8000')
# Start the webserver
execute_from_command_line(['manage.py', 'runserver', '0.0.0.0:8000'])