Issue
I am using PySide and need to open web-page in default system browser. Example of code below, however it run always IE browser:
import webbrowser
webbrowser.open(url_link)
What can it be an issue?
Solution
Very simple solution...
webbrowser.open('http://' + url_link)
Answered By - SpanishBoy
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.