Tanmay Jain <tanmayjain...@gmail.com> added the comment:
>>> 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 >>> ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue35663> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com