8000 gh-102871: Remove obsolete browsers from webbrowser by DBJim · Pull Request #102872 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-102871: Remove obsolete browsers from webbrowser #102872

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 31, 2023
Prev Previous commit
Next Next commit
Register epiphany by name to match surrounding code
  • Loading branch information
DBJim committed Mar 27, 2023
commit 90fa6d2e0b2012aa8a50673df110f6fb5d12c204
2 changes: 1 addition & 1 deletion Lib/webbrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def register_X_browsers():

# Gnome's Epiphany
if shutil.which("epiphany"):
register(browser, None, Epiphany("epiphany"))
register("epiphany", None, Epiphany("epiphany"))

# Google Chrome/Chromium browsers
for browser in ("google-chrome", "chrome", "chromium", "chromium-browser"):
Expand Down
0