[Python-checkins] cpython (merge 3.5 -> default): Issue #8232: Renamed WinFireFox to WinFirefox

steve.dower python-checkins at python.org
Mon Jun 15 18:11:53 CEST 2015


https://hg.python.org/cpython/rev/8667c26e2bec
changeset:   96609:8667c26e2bec
parent:      96607:b2a37f0ef915
parent:      96608:0d54a78861cf
user:        Steve Dower <steve.dower at microsoft.com>
date:        Mon Jun 15 09:11:37 2015 -0700
summary:
  Issue #8232: Renamed WinFireFox to WinFirefox

files:
  Lib/webbrowser.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
--- a/Lib/webbrowser.py
+++ b/Lib/webbrowser.py
@@ -538,7 +538,7 @@
         newtab = "-new-tab"
 
 
-    class WinFireFox(WindowsDefault):
+    class WinFirefox(WindowsDefault):
         """Launcher class for windows specific Firefox browser"""
 
         cmd = "start firefox.exe"
@@ -614,7 +614,7 @@
         elif "chrome" in browser:
             register("chrome", None, WinChrome("chrome"))
         elif "firefox" in browser:
-            register("firefox", None, WinFireFox("firefox"))
+            register("firefox", None, WinFirefox("firefox"))
         elif "opera" in browser:
             register("opera", None, WinOpera("opera"))
         elif "seamonkey" in browser:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list