summaryrefslogtreecommitdiffstats
path: root/share/extensions/webbrowser_reportabug.py
blob: 3fb01a753feba177453e985d3ffcd379ebcc1232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python 
import webbrowser, threading
url = "http://inkscape.org/report_bugs.php"

class VisitWebSiteWithoutLockingInkscape(threading.Thread):
    def __init__(self, url):
        self.url = url
        threading.Thread.__init__ (self)

    def run(self):       
        webbrowser.open(self.url)
        
vwswli = VisitWebSiteWithoutLockingInkscape(url)
vwswli.start()