This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author codextj
Recipients codextj, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-01-05.05:09:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546664949.36.0.386474237977.issue35663@roundup.psfhosted.org>
In-reply-to
Content
>>> import webbrowser
>>> brwsr = webbrowser.get("C:/Program Files/Mozilla Firefox/firefox.exe %s")
>>> brwsr.open('www.google.com')
False # <-- even though firefox opens the url

>>> brwsr = webbrowser.get("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s")
>>> brwsr.open('www.google.com')
True
>>> brwsr = webbrowser.get(using ='windows-default')
>>> brwsr.open('www.google.com')
True
>>>
History
Date User Action Args
2019-01-05 05:09:11codextjsetrecipients: + codextj, paul.moore, tim.golden, zach.ware, steve.dower
2019-01-05 05:09:09codextjsetmessageid: <1546664949.36.0.386474237977.issue35663@roundup.psfhosted.org>
2019-01-05 05:09:09codextjlinkissue35663 messages
2019-01-05 05:09:09codextjcreate