diff python/ppci/tasks.py @ 347:742588fb8cd6 devel

Merge into devel branch
author Windel Bouwman
date Fri, 07 Mar 2014 17:10:21 +0100
parents 3bb7dcfe5529
children 9667d78ba79e
line wrap: on
line diff
--- a/python/ppci/tasks.py	Sat Mar 01 16:27:52 2014 +0100
+++ b/python/ppci/tasks.py	Fri Mar 07 17:10:21 2014 +0100
@@ -6,7 +6,8 @@
 import logging
 
 class TaskError(Exception):
-    pass
+    def __init__(self, msg):
+        self.msg = msg
 
 
 class Task: