From 6c1895fbcd0523f385d83cb784aaec287dd9f5a9 Mon Sep 17 00:00:00 2001 From: Steven Luo Date: Fri, 11 Dec 2009 02:56:22 -0800 Subject: [PATCH] Unbreak the no-config-file case after last commit Thinko in the last commit left LaunchBrowser potentially undefined in the no-config-file case. --- browser-switchboard | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser-switchboard b/browser-switchboard index 8873c24..e922cee 100755 --- a/browser-switchboard +++ b/browser-switchboard @@ -197,7 +197,7 @@ def readconfigfile(signalnum=None, frame=None): execfile(os.getenv("HOME", "/home/user") + "/.config/browser-proxy", globals()) except: # No valid config file available - return + pass launcher.UpdateDefaultBrowser() setconfigdefaults() -- 1.7.9.5