我一直在使用这个模块没有问题,将其称为:
webbrowser.open("http link...")
但是,现在我想选择一个不同的浏览器,并根据文档(http://docs.python.org/library/webbrowser.html#webbrowser.get)我写了这个
controller = webbrowser.get('firefox')
controller("http link...")
...我得到一个我无法摆脱的错误:
Exception in Tkinter callback
Traceback (most recent call last):
....
TypeError: 'Mozilla' object is not callable
有什么想法吗???