Changeset 4385 for waeup/branches
- Timestamp:
- 28 Jun 2009, 00:06:21 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/university/certificate.py
r4331 r4385 4 4 from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState 5 5 from zope.component.interfaces import IFactory 6 from zope.interface import implementedBy 6 7 from waeup.interfaces import (ICertificate, ICertificateContainer, 7 8 ICertificateCourse, ICourse, IDepartment) … … 67 68 description = u"This factory instantiates new certificate instances." 68 69 69 def __call__(self ):70 return Certificate( )70 def __call__(self, *args, **kw): 71 return Certificate(*args, **kw) 71 72 72 73 def getInterfaces(self):
Note: See TracChangeset for help on using the changeset viewer.