Changeset 8cde5f in indico for indico/MaKaC/conference.py


Ignore:
Timestamp:
04/18/12 16:14:59 (13 months ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
052e5f
Parents:
f56594 (diff), a00869 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'v0.98-series'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/conference.py

    rbce3a4 r8cde5f  
    43234323        if options.get("alerts",False) : 
    43244324            for alarm in self.getAlarmList() : 
    4325                 # only clone alarms that will happen in the future 
    4326                 if alarm.getStartOn() > nowutc(): 
     4325                # for absoulte alarms, only clone alarms that will happen in the future 
     4326                if alarm._relative is not None or alarm.getStartOn() > nowutc(): 
    43274327                    # .clone takes care of enqueuing it 
    43284328                    alarm.clone(conf) 
Note: See TracChangeset for help on using the changeset viewer.