From 23165d93821f288e8cab07d4076909de453823ee Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 8 Nov 2012 16:19:44 -0600 Subject: [PATCH] fixed issue 1144, start webservert at 0.0.0.0 --- VERSION | 2 +- gluon/widget.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index c33ee5f9..2139e39c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.2.1 (2012-11-08 11:29:42) stable +Version 2.2.1 (2012-11-08 16:19:37) stable diff --git a/gluon/widget.py b/gluon/widget.py index b754e037..dfd44cca 100644 --- a/gluon/widget.py +++ b/gluon/widget.py @@ -104,6 +104,7 @@ def try_start_browser(url): try: import webbrowser + url = url.replace('0.0.0.0','127.0.0.1') webbrowser.open(url) except: print 'warning: unable to detect your browser'