summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-01-14 23:09:35 (GMT)
committerGuido van Rossum <guido@python.org>2001-01-14 23:09:35 (GMT)
commit2d3eb133b7b66408ee7abf182101dbdc3358b8d9 (patch)
tree5f82dd7c7ab99fbe7e68ade843ae1dcdf7446868 /Lib
parentc5f15b088fd30157fb587079d47086295b7ed52b (diff)
downloadcpython-2d3eb133b7b66408ee7abf182101dbdc3358b8d9.zip
cpython-2d3eb133b7b66408ee7abf182101dbdc3358b8d9.tar.gz
cpython-2d3eb133b7b66408ee7abf182101dbdc3358b8d9.tar.bz2
SF Patch #103211.
Ping apparently doesn't check in Accepted patches, so I'm doing this for him. According to Ping: The name of the controller class should be "Konqueror", not "Konquerer". (See the website http://www.konqueror.org/.)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/webbrowser.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index fd8c521..759f470 100644
--- a/Lib/webbrowser.py
+++ b/Lib/webbrowser.py
@@ -104,11 +104,11 @@ class Netscape:
register("netscape", Netscape)
-class Konquerer:
- """Controller for the KDE File Manager (kfm, or Konquerer).
+class Konqueror:
+ """Controller for the KDE File Manager (kfm, or Konqueror).
See http://developer.kde.org/documentation/other/kfmclient.html
- for more information on the Konquerer remote-control interface.
+ for more information on the Konqueror remote-control interface.
"""
def _remote(self, action):
@@ -128,7 +128,7 @@ class Konquerer:
def open_new(self, url):
self._remote("openURL %s" % url)
-register("kfm", Konquerer)
+register("kfm", Konqueror)
class Grail: