Hello all.  Me again.  I have run into an interesting issue.  I have 
installed and followed niphlod's w2p_timezone_plugin.  In order to make it 
work on my local PC I need to setup my db.py as follows.

import pytz
user_timezone = session.plugin_timezone_tx or 'UTC'


db.define_table('events',
                Field('event_time', 'datetime', default = request.now, update = 
request.now,
                    requires=IS_DATETIME(format=('%m-%d-%Y %H:%M'), 
timezone=pytz.timezone(user_timezone))),


But to get it to work on pythonanywhere.com I have to setup my db.py as 
follows.  Any ideas why?


import pytz

db.define_table('events',
                Field('event_time', 'datetime', default = request.now, update = 
request.now,
                    requires=IS_DATETIME(format=('%m-%d-%Y %H:%M'), 
timezone=pytz.timezone("US/Central"))),



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to