5

我一直在使用这个模块没有问题,将其称为:

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

有什么想法吗???

4

1 回答 1

6

控制器对象不可调用。做这个:

controller.open(url)
于 2012-08-07T13:54:33.410 回答