diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2017-07-21 14:08:22 +0200 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2017-07-21 14:08:22 +0200 |
commit | 7f347ae804be0bba195acbe387f57b334a91e2ac (patch) | |
tree | b871c2d16e1b98109ea4794db92d90a608a0148a /pykolab/xml | |
parent | 7b91777e54bb816a8c88f659dc3760618cb329cf (diff) | |
download | pykolab-7f347ae804be0bba195acbe387f57b334a91e2ac.tar.gz |
Support unicode characters in event location field (Bifrost#T29104)
Diffstat (limited to 'pykolab/xml')
-rw-r--r-- | pykolab/xml/event.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/xml/event.py b/pykolab/xml/event.py index 40dfaba..82b6c33 100644 --- a/pykolab/xml/event.py +++ b/pykolab/xml/event.py @@ -1035,7 +1035,7 @@ class Event(object): self.event.setSequence(int(sequence)) def set_url(self, url): - self.event.setUrl(str(url)) + self.event.setUrl(ustr(url)) def set_recurrence(self, recurrence): self.event.setRecurrenceRule(recurrence) |