Fix opening links from Help menu and others

This commit is contained in:
Andrew Resch 2009-01-16 02:45:36 +00:00
parent f16ff06083
commit 2acd470626

View File

@ -188,7 +188,6 @@ def open_url_in_browser(url):
:param url: the url to open
"""
def start_browser():
import threading
import webbrowser
class BrowserThread(threading.Thread):
@ -198,7 +197,6 @@ def open_url_in_browser(url):
def run(self):
webbrowser.open(self.url)
BrowserThread(url).start()
return False
## Formatting text functions