| branch | devel |
| changeset 162 | 497d6b9b6914 |
| parent 161 | 072ee139eb67 |
| child 217 | d755b2e0cc0b |
--- a/iro/controller/task.py Tue Feb 14 16:23:27 2012 +0100 +++ b/iro/controller/task.py Tue Feb 14 21:24:31 2012 +0100 @@ -2,7 +2,7 @@ from twisted.internet.defer import inlineCallbacks, returnValue -from ..error import NoRoute, RejectRecipient +from ..error import NoRouteForTask, RejectRecipient from ..model.offer import offers from ..model.job import exJobs @@ -32,7 +32,7 @@ except RejectRecipient: continue else: - raise NoRoute() + raise NoRouteForTask() @inlineCallbacks