From bcf7df5860a4d5648bc05b53ef5adef3084f952f Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Fri, 4 Apr 2014 10:56:57 +0200 Subject: ACPException is now pickleable. --- meetingtools/ac/api.py | 1 + 1 file changed, 1 insertion(+) 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) -- cgit v1.1