Dustan wrote:
> I did do a search here, but came up empty-handed. Can anyone tell me
> how to get the webbrowser module to recognize firefox's existence,
> given this information?

Looks like it is checking %PATH% for firefox.exe. Try:

>>> import os
>>> os.environ["PATH"] = r"C:\Program Files\Mozilla Firefox;"
>>> import webbrowser
>>> webbrowser._browsers 

Regards,
Jordan

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to