changeset 59 | 9155d1640237 |
parent 51 | 5ebe61e3a965 |
child 75 | 5cf9c8a16aee |
58:7e5e72ddeeb2 | 59:9155d1640237 |
---|---|
287 """Timezones vocabulary""" |
287 """Timezones vocabulary""" |
288 |
288 |
289 def __init__(self, *args, **kw): |
289 def __init__(self, *args, **kw): |
290 terms = [SimpleTerm(t, t, t) for t in pytz.all_timezones] |
290 terms = [SimpleTerm(t, t, t) for t in pytz.all_timezones] |
291 super(TimezonesVocabulary, self).__init__(terms) |
291 super(TimezonesVocabulary, self).__init__(terms) |
292 |
|
293 |
|
294 |
|
295 |