From 6336567674c6875c2c9ad57adb67a35845da782d Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Mon, 13 Aug 2012 12:44:20 +0200 Subject: [PATCH] add view attribute to job manager --- organize/interfaces.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/organize/interfaces.py b/organize/interfaces.py index 5c2b718..f37e5ec 100644 --- a/organize/interfaces.py +++ b/organize/interfaces.py @@ -506,6 +506,9 @@ class IJobManager(Interface): """ Collects and executes jobs. """ + view = Attribute('An optional view object which the job manager ' + 'was called from.') + def process(): """ Do what has to be done... """