Very odd. Can you try replace

thread.start_new_thread(start_browser,
                                    (get_url(ip, proto=proto, port=port),),
                                    dict(startup=True))

with

thread.start_new_thread(start_browser,
                                    (get_url(ip, proto=proto, port=port), 
True))

On Sunday, 13 January 2013 23:44:45 UTC-6, aabelyakov wrote:
>
> ubuntu v.11.04 (Natty), v.12.04 (Precise), windows 8
> web2py v.2.3.2 (2012-12-17 15:03:30) stable
>
>
> When you run web2py.py without parameter -a <recycle>
>
> Exception in Tkinter callback
> Traceback (most recent call last):
> File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 1413, in __call__
> return self.func(*args)
> File "/home/aabelyakov/MyPython/web2py/gluon/widget.py", line 514, in start
> dict(startup=True))
> TypeError: __call__() takes exactly 3 arguments (4 given)
>

-- 



Reply via email to