After marking gofish up to a temporary loss I've moved back to my address book. The issue I'm currently having is that webbrowser is opening the wrong broswer. I've set my default browser to firefox (currently using windows vista), and yet the program is still opening IE, however when I tried webbrowser.open('whatever') it opened with firefox. Below is the relevant code, any ideas?
self.viewurlbttn= Button(self, text='Open URL', command=self.urlopen)
self.viewurlbttn.grid(row=2,column=1,columnspan=3)
def urlopen(self):
import webbrowser
webbrowser.open(Interface.url)
p.s. I'm using tkinter