diff options
author | Johan Lundberg <lundberg@nordu.net> | 2014-04-04 10:56:57 +0200 |
---|---|---|
committer | Johan Lundberg <lundberg@nordu.net> | 2014-04-04 10:56:57 +0200 |
commit | bcf7df5860a4d5648bc05b53ef5adef3084f952f (patch) | |
tree | d350957c16663b752842af245356581a2ace0cc1 | |
parent | be303f3210b9793598692ec22ecf29c6f20f2aba (diff) |
ACPException is now pickleable.
-rw-r--r-- | meetingtools/ac/api.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meetingtools/ac/api.py b/meetingtools/ac/api.py index 5254163..cd3ac7b 100644 --- a/meetingtools/ac/api.py +++ b/meetingtools/ac/api.py @@ -25,6 +25,7 @@ from celery.execute import send_task class ACPException(Exception): def __init__(self, value): self.value = value + Exception.__init__(self, value) def __str__(self): return etree.tostring(self.value) |