diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2018-06-22 19:49:05 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2018-06-22 19:49:05 +0200 |
commit | 89e1e560eba5758b36ed626f284df9eb39d8ba01 (patch) | |
tree | 72be025d75b5cac95c16139aedbd0ef4ee5854be | |
parent | 270915eb84ce8ba79f436e084f3c74066f0a79fb (diff) | |
download | pykolab-89e1e560eba5758b36ed626f284df9eb39d8ba01.tar.gz |
There's no status here, just classification
-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 9d1f9e6..102ebce 100644 --- a/pykolab/xml/event.py +++ b/pykolab/xml/event.py @@ -817,7 +817,7 @@ class Event(object): if classification in self.classification_map.keys(): self.event.setClassification(self.classification_map[classification]) elif classification in self.classification_map.values(): - self.event.setClassification(status) + self.event.setClassification(classification) else: raise ValueError, _("Invalid classification %r") % (classification) |