Problem with using times in Python.
Terminal > Python
>>> calendar.timegm(datetime.datetime.now().utctimetuple())
1258449380
This time indicates GMT: Tue, 17 Nov 2009 09:16:20 GMT
Eclipse via Django Server
>>> calendar.timegm(datetime.datetime.now().utctimetuple())
1258427784
This time indicates GMT: Tue, 17 Nov 2009 03:16:24 GMT
My current timezone is infact GMT and the time is 16 minutes past 9, which means the Terminal is correct, however the Eclipse/Django one is 6 hours off. I'm so confused. I thought they'd both be using the same version of Python? As far as I'm aware I only have 2.6.2 installed.