Commit 2d3eb133 authored by Guido van Rossum's avatar Guido van Rossum

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/.)
parent c5f15b08
...@@ -104,11 +104,11 @@ class Netscape: ...@@ -104,11 +104,11 @@ class Netscape:
register("netscape", Netscape) register("netscape", Netscape)
class Konquerer: class Konqueror:
"""Controller for the KDE File Manager (kfm, or Konquerer). """Controller for the KDE File Manager (kfm, or Konqueror).
See http://developer.kde.org/documentation/other/kfmclient.html 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): def _remote(self, action):
...@@ -128,7 +128,7 @@ class Konquerer: ...@@ -128,7 +128,7 @@ class Konquerer:
def open_new(self, url): def open_new(self, url):
self._remote("openURL %s" % url) self._remote("openURL %s" % url)
register("kfm", Konquerer) register("kfm", Konqueror)
class Grail: class Grail:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment