mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-05 04:07:20 +00:00
mitmweb: use x-www-browser
This commit is contained in:
parent
4bf93ec379
commit
ac5ca0fc63
1 changed files with 5 additions and 3 deletions
|
|
@ -44,7 +44,9 @@ def open_browser(url: str) -> bool:
|
|||
False, if no suitable browser has been found.
|
||||
"""
|
||||
browsers = (
|
||||
"windows-default", "wslview %s", "macosx",
|
||||
"windows-default", "macosx",
|
||||
"wslview %s",
|
||||
"x-www-browser %s", "gnome-open %s",
|
||||
"google-chrome", "chrome", "chromium", "chromium-browser",
|
||||
"firefox", "opera", "safari",
|
||||
)
|
||||
|
|
@ -54,6 +56,6 @@ def open_browser(url: str) -> bool:
|
|||
except webbrowser.Error:
|
||||
pass
|
||||
else:
|
||||
b.open(url)
|
||||
return True
|
||||
if b.open(url):
|
||||
return True
|
||||
return False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue