You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The webbrowser.open() method and its variants expect the open methods of browsers to return a True value if the operation is successful, and a False value otherwise.
Presently, the AndroidBrowser does not return a value for these methods, causing webbrowser.open() to return False, indicating failure.
The text was updated successfully, but these errors were encountered:
I've made these functions return True (61b95b6). Right now there's no way to return False, but I'm not sure what even happens if this fails (all we know is that we asked the system to opena browser), so I guess it's okay for now.
If anyone has a better idea, such a contribution would be welcome.
The webbrowser.open() method and its variants expect the open methods of browsers to return a True value if the operation is successful, and a False value otherwise.
Presently, the AndroidBrowser does not return a value for these methods, causing webbrowser.open() to return False, indicating failure.
The text was updated successfully, but these errors were encountered: