I am working on a script that I found and trying to make it work. I am running python 2.5.2 on Windows XP with WAMP installed. So far I have figured out how to send email and some other basic stuff, but I'm stuck on a TimeZone error that I am getting.
>>>
Traceback (most recent call last):
File "C:\test\recipe-496790-1.py", line 659, in <module>
main()
File "C:\test\recipe-496790-1.py", line 589, in main
times = makedate(departure[0], departure[1], departure[3])
File "C:\test\recipe-496790-1.py", line 567, in makedate
time.tzset()
AttributeError: 'module' object has no attribute 'tzset'
>>>
I googled the error and it appears that the code I am using isn't supported by XP.
How should I go about troubleshooting this?