diff --git a/pykolab/xml/event.py b/pykolab/xml/event.py --- a/pykolab/xml/event.py +++ b/pykolab/xml/event.py @@ -880,7 +880,8 @@ if attr == "categories": self.add_category(value) elif attr == "class": - self.set_classification(value) + if (value and value[:2] not in ['X-', 'x-']): + self.set_classification(value) elif attr == "recurrenceid": self.set_ical_recurrenceid(value, params) elif hasattr(self, ical_setter):