From 8d7b840e7ee80cb1db92f1765903c4d6936bffb1 Mon Sep 17 00:00:00 2001 From: Murtuza Zabuawala Date: Tue, 23 Aug 2016 12:41:41 +0100 Subject: [PATCH] Fix startup navigation message. --- web/pgAdmin4.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pgAdmin4.py b/web/pgAdmin4.py index 707785b3c..1fb34f932 100644 --- a/web/pgAdmin4.py +++ b/web/pgAdmin4.py @@ -84,8 +84,8 @@ app.PGADMIN_RUNTIME = PGADMIN_RUNTIME # If we're under WSGI, we don't need to worry about this if __name__ == '__main__': if not PGADMIN_RUNTIME: - print("Starting %s. Please navigate to http://localhost:%d in your browser." % - (config.APP_NAME, server_port)) + print("Starting %s. Please navigate to http://%s:%d in your browser." % + (config.APP_NAME, config.DEFAULT_SERVER, server_port)) sys.stdout.flush() try: