Ignore:
Timestamp:
8 Mar 2012, 22:28:46 (13 years ago)
Author:
Henrik Bettermann
Message:

KOFA -> Kofa

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/university/facultiescontainer.py

    r7811 r7819  
    1919from zope.component.interfaces import IFactory
    2020from zope.interface import implementedBy
    21 from waeup.kofa.interfaces import IKOFAPluggable
     21from waeup.kofa.interfaces import IKofaPluggable
    2222from waeup.kofa.university.interfaces import IFacultiesContainer, IFaculty
    2323
     
    5252    """A plugin that creates container for faculties inside a university.
    5353    """
    54     grok.implements(IKOFAPluggable)
     54    grok.implements(IKofaPluggable)
    5555    grok.name('faculties')
    5656
    5757    def setup(self, site, name, logger):
    5858        if 'faculties' in site.keys():
    59             logger.warn('Could not create container for faculties in KOFA.')
     59            logger.warn('Could not create container for faculties in Kofa.')
    6060            return
    6161        site['faculties'] = FacultiesContainer()
Note: See TracChangeset for help on using the changeset viewer.