Hello, I'm trying to make an application which deals with timezones thanks to pytz[1] and I can't figure out how to use hourly timezones instead of minutes based ones. For instance:
>>> paris = pytz.timezone('Europe/Paris') >>> mydate = datetime(*time.strptime('2008-02-12', '%Y-%m-%d')[: 6],**{'tzinfo':paris}) >>> print mydate 2008-02-12 00:00:00+00:09 And if I try to use the normalize function, the date is changed : >>> print paris.normalize(mydate) 2008-02-12 00:51:00+01:00 I'm really surprised that some kind of "rounded" function for timezones exist. Or maybe I just didn't find it? Any tips will be really appreciated. Thanks, David [1] http://pytz.sourceforge.net/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---