[Python-checkins] cpython (3.5): 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/0d54a78861cf
changeset:   96608:0d54a78861cf
branch:      3.5
parent:      96606:657db038df69
user:        Steve Dower <steve.dower at microsoft.com>
date:        Mon Jun 15 09:11:14 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