Comment #1 on issue 3005 by [email protected]: timezone string limited to
20 char whereas some timezones are greater than 20
http://code.google.com/p/reviewboard/issues/detail?id=3005
the biggest string length is 30 chars for America/Argentina/Buenos_Aires
import pytz
max=0
for tz in pytz.common_timezones:
... if len(tz) > max:
... max=len(tz)
... print "%d %s" % (len(tz), tz)
...
14 Africa/Abidjan
18 Africa/Addis_Ababa
20 Africa/Dar_es_Salaam
30 America/Argentina/Buenos_Aires
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/reviewboard-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.