]> granicus.if.org Git - python/commitdiff
SF Patch #103211.
authorGuido van Rossum <guido@python.org>
Sun, 14 Jan 2001 23:09:35 +0000 (23:09 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 14 Jan 2001 23:09:35 +0000 (23:09 +0000)
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/.)

Lib/webbrowser.py

index fd8c5215b23bb19baca1ba5b5713f039ac09cb2f..759f470dc4d33ebe2e53679fe20cd7d248dc4380 100644 (file)
@@ -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: