- Timestamp:
- 13 Nov 2014, 14:40:27 (10 years ago)
- Location:
- main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/mandates/container.py
r11947 r11949 22 22 from datetime import datetime 23 23 from grok import index 24 from waeup. kofa.interfaces import IKofaPluggable25 from waeup. kofa.mandates.interfaces import IMandatesContainer, IMandate24 from waeup.ikoba.interfaces import IIkobaPluggable 25 from waeup.ikoba.mandates.interfaces import IMandatesContainer, IMandate 26 26 27 27 class MandatesContainer(grok.Container): … … 51 51 """A plugin that creates container for mandates inside a university. 52 52 """ 53 grok.implements(I KofaPluggable)53 grok.implements(IIkobaPluggable) 54 54 grok.name('mandates') 55 55 56 56 def setup(self, site, name, logger): 57 57 if 'mandates' in site.keys(): 58 logger.warn('Could not create container for mandates in Kofa.')58 logger.warn('Could not create container for mandates in Ikoba.') 59 59 return 60 60 site['mandates'] = MandatesContainer()
Note: See TracChangeset for help on using the changeset viewer.