# HG changeset patch # User Paul Boddie # Date 1428419804 -7200 # Node ID e11ca05818b443d48e875cc35ba5082981da9b3a # Parent ee88484498222bf973bdc18142d0389ba9af3f42 Removed the superfluous free/busy handler. diff -r ee8848449822 -r e11ca05818b4 imiptools/handlers/person_outgoing.py --- a/imiptools/handlers/person_outgoing.py Tue Apr 07 15:04:40 2015 +0200 +++ b/imiptools/handlers/person_outgoing.py Tue Apr 07 17:16:44 2015 +0200 @@ -202,23 +202,9 @@ def request(self): self._record(True, True) -class Freebusy(PersonHandler): - - "A free/busy handler." - - def publish(self): - pass - - def reply(self): - pass - - def request(self): - pass - # Handler registry. handlers = [ - ("VFREEBUSY", Freebusy), ("VEVENT", Event), ]