6๐
โ
As referenced in other post you cite, see:
http://code.google.com/p/modwsgi/wiki/ApplicationIssues#Timezone%5Fand%5FLocale%5FSettings
The issue is when you have multiple applications running in same server process which want different timezone settings. This is because TZ is a global process environment. Which ever application got to set it last will take precedence over all the others.
Use daemon mode of mod_wsgi and run any Python web applications which require different timezone settings to other applications in their own daemon process group. That way they will not interfere with each other.
๐คGraham Dumpleton
Source:stackexchange.com