]> granicus.if.org Git - python/commitdiff
Issue 10738: Fix webbrowser.Opera.raise_opts value.
authorTerry Reedy <tjreedy@udel.edu>
Tue, 28 Dec 2010 19:50:27 +0000 (19:50 +0000)
committerTerry Reedy <tjreedy@udel.edu>
Tue, 28 Dec 2010 19:50:27 +0000 (19:50 +0000)
Lib/webbrowser.py
Misc/NEWS

index aee797d399068c0418e936025f43d58e6d0dfc84..19079858ca4845df18aa36449df9186dd14d05a1 100644 (file)
@@ -286,12 +286,10 @@ class Mozilla(UnixBrowser):
     """Launcher class for Mozilla/Netscape browsers."""
 
     raise_opts = ["-noraise", "-raise"]
-
     remote_args = ['-remote', 'openURL(%s%action)']
     remote_action = ""
     remote_action_newwin = ",new-window"
     remote_action_newtab = ",new-tab"
-
     background = True
 
 Netscape = Mozilla
@@ -304,15 +302,13 @@ class Galeon(UnixBrowser):
     remote_args = ['%action', '%s']
     remote_action = "-n"
     remote_action_newwin = "-w"
-
     background = True
 
 
 class Opera(UnixBrowser):
     "Launcher class for Opera browser."
 
-    raise_opts = ["", "-raise"]
-
+    raise_opts = ["-noraise", ""]
     remote_args = ['-remote', 'openURL(%s%action)']
     remote_action = ""
     remote_action_newwin = ",new-window"
index 77d776926ea866183c823c9888e2e630c2abfdfd..296639cf760c02bcbb74d5b89f6aae9cf9d96867 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and Builtins
 Library
 -------
 
+- Issue 10738: Fix webbrowser.Opera.raise_opts
+
 - Issue 9824: SimpleCookie now encodes , and ; in values to cater to how
   browsers actually parse cookies.