diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-03-19 22:34:54 -0400 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-03-19 22:34:54 -0400 |
commit | b142fff6696b137e8c7a0465281d962594766941 (patch) | |
tree | d57fb9fab10141cbd935cc687d74d2afd9b854ca | |
parent | cb6f96492e6abbb265e691a58b794257c75e4b7f (diff) | |
download | pykolab-b142fff6696b137e8c7a0465281d962594766941.tar.gz |
Pass additional attributes to delegated-from contact reference
-rw-r--r-- | pykolab/xml/attendee.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/xml/attendee.py b/pykolab/xml/attendee.py index c62bbb1..877f810 100644 --- a/pykolab/xml/attendee.py +++ b/pykolab/xml/attendee.py @@ -67,7 +67,7 @@ class Attendee(kolabformat.Attendee): self.set_cutype(cutype) if ical_params and ical_params.has_key('DELEGATED-FROM'): - self.delegate_from(Attendee(str(ical_params['DELEGATED-FROM']))) + self.delegate_from(Attendee(str(ical_params['DELEGATED-FROM']), role=self.get_role(), cutype=self.get_cutype())) if ical_params and ical_params.has_key('DELEGATED-TO'): self.delegate_to(Attendee(str(ical_params['DELEGATED-TO']))) |