From 520cdf733aa8bfff48369822802a2df913851fcb Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 11 Oct 2002 22:04:22 +0000 Subject: SF # 539360, webbrowser.py and konqueror, by Andy McKay Fix Konqueror so it can start when calling open(). The assert needed to be on the raw URL, not openURL 'url...' Will backport. --- Lib/webbrowser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index ac8ce58..efdebdc 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -176,8 +176,7 @@ class Konqueror: self.name = self.basename = "kfm" def _remote(self, action): - assert "'" not in action - cmd = "kfmclient '%s' >/dev/null 2>&1" % action + cmd = "kfmclient %s >/dev/null 2>&1" % action rc = os.system(cmd) if rc: import time @@ -192,6 +191,7 @@ class Konqueror: def open(self, url, new=1, autoraise=1): # XXX Currently I know no way to prevent KFM from # opening a new win. + assert "'" not in url self._remote("openURL '%s'" % url) open_new = open -- cgit v0.12