# HG changeset patch # User jruigrok # Date 1205940738 0 # Node ID 94507c5de7d58664cd7a13020108b4ea751ad086 # Parent d1ed9ad945b8f6dcc26f2514ff43e4ece9393612 Actually use UTC to be more correct. diff --git a/babel/dates.py b/babel/dates.py --- a/babel/dates.py +++ b/babel/dates.py @@ -521,8 +521,7 @@ >>> from pytz import timezone >>> t = time(15, 30) - >>> format_time(t, format='full', tzinfo=timezone('Universal'), - ... locale='fr_FR') + >>> format_time(t, format='full', tzinfo=timezone('UTC'), locale='fr_FR') u'15:30:00 Monde (GMT)' >>> format_time(t, "hh 'o''clock' a, zzzz", tzinfo=timezone('US/Eastern'), ... locale='en')