Changeset a74be8 in indico


Ignore:
Timestamp:
07/23/10 15:58:23 (3 years ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
20f609
Parents:
e7d691
Message:

[FIX] AttributeException? with TZMigration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/conference.py

    r6b4ff5 ra74be8  
    31683168    #################################### 
    31693169    def setTimezone(self, tz): 
    3170         oldTimezone = self.timezone 
     3170        try: 
     3171            oldTimezone = self.timezone 
     3172        except AttributeError: 
     3173            oldTimezone = tz 
    31713174        self.timezone = tz 
    31723175 
Note: See TracChangeset for help on using the changeset viewer.