blob: a479323972081146d3b97b46bc86ced06189ddcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python
import webbrowser, threading
url = "http://wiki.inkscape.org/wiki/index.php/ReleaseNotes046"
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()
|