branch | doc-dc |
changeset 68 | de025ff8ba30 |
parent 59 | 9155d1640237 |
child 75 | 5cf9c8a16aee |
63:9fdc2d81e685 | 68:de025ff8ba30 |
---|---|
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 |