From 5344a8bb85cc385de082b07fbf4f35c3d39337d6 Mon Sep 17 00:00:00 2001 From: helmutm Date: Sat, 27 Dec 2008 22:21:07 +0000 Subject: [PATCH] work in progress: task management with work items git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3090 fd906abe-77d9-0310-91a1-e0d9ade77398 --- organize/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/organize/interfaces.py b/organize/interfaces.py index 04c1e12..88c09dd 100644 --- a/organize/interfaces.py +++ b/organize/interfaces.py @@ -433,7 +433,6 @@ class IWorkItem(Interface): 'by its name or ID.') state = Attribute('The current state the work item is in.') description = Attribute('A note about what has to be done, and why...') - comment = Attribute('A note about what has been done, and why...') # optional plan fields; duration (and effort) may be derived from start and end # all date/time fields are timeStamp values, all duration and effort # fields are in seconds @@ -447,6 +446,7 @@ class IWorkItem(Interface): end = Attribute('When the work was finished.') duration = Attribute('How long it took to finish the work.') effort = Attribute('How much effort (time units) it took to finish the work.') + comment = Attribute('A note about what has been done, and why...') # work item handling creator = Attribute('The party that has set up the work item.') created = Attribute('The timeStamp of the initial creation of the work item.')