Changes between Version 53 and Version 54 of AnnouncerPlugin


Ignore:
Timestamp:
Jan 5, 2011, 12:03:59 AM (13 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnnouncerPlugin

    v53 v54  
    353353-        ordered_subs = sorted(subscriptions, key=itemgetter(1,2,3,6))
    354354+        subscriptions.sort(key=lambda i:(i[1],i[2],i[3],i[6]))
    355 +        #ordered_subs = sorted(subscriptions, key=itemgetter(1,2,3,6))
    356355 
    357356         resolved_subs = []
     
    362361         }
    363362-        for s in ordered_subs:
    364 +        #for s in ordered_subs:
    365363+        for s in subscriptions:
    366364             if (s[1], s[2], s[3]) == state['last']: