# HG changeset patch # User Paul Boddie # Date 1426008434 -3600 # Node ID c93d2c7871951265a364b430aa79720f9967ae94 # Parent 6d442f189662c5cd3c13d1a4a2857c69e489443a Obtain event summaries directly from the conflict (free/busy) data. diff -r 6d442f189662 -r c93d2c787195 imip_manager.py --- a/imip_manager.py Tue Mar 10 17:22:09 2015 +0100 +++ b/imip_manager.py Tue Mar 10 18:27:14 2015 +0100 @@ -1240,7 +1240,7 @@ page.tbody() for t in conflicts: - start, end, found_uid, transp, found_recurrenceid = t[:5] + start, end, found_uid, transp, found_recurrenceid, summary = t[:6] # Provide details of any conflicting event. @@ -1252,13 +1252,7 @@ # Show the event summary for the conflicting event. page.td() - - found_obj = self._get_object(found_uid, found_recurrenceid) - if found_obj: - page.a(found_obj.get_value("SUMMARY"), href=self.link_to(found_uid)) - else: - page.add("No details available") - + page.a(summary, href=self.link_to(found_uid)) page.td.close() page.td(start)