Update auto-detection for Konqueror to include KDE 2 -- the kfm command is
gone; "konqueror" is the new name, and the command-line args are different.
kfmclient has not changed, though.
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index 77edf0d..ebafd80 100644
--- a/Lib/webbrowser.py
+++ b/Lib/webbrowser.py
@@ -136,7 +136,7 @@
             register("mosaic", None, GenericBrowser("mosaic %s >/dev/null &"))
 
         # Konqueror/kfm, the KDE browser.
-        if _iscommand("kfm"):
+        if _iscommand("kfm") or _iscommand("konqueror"):
             class Konqueror:
                 """Controller for the KDE File Manager (kfm, or Konqueror).
 
@@ -149,7 +149,10 @@
                     rc = os.system(cmd)
                     if rc:
                         import time
-                        os.system("kfm -d &")
+                        if _iscommand("konqueror"):
+                            os.system("konqueror --silent &")
+                        else:
+                            os.system("kfm -d &")
                         time.sleep(PROCESS_CREATION_DELAY)
                         rc = os.system(cmd)
                     return not rc