通过将其命名为:
,我一直在使用此模块而没有任何问题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
关于它的任何想法???