Changeset 7829 for main/waeup.kofa/trunk/src/waeup/kofa/utils
- Timestamp:
- 9 Mar 2012, 22:22:23 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/utils.py
r7819 r7829 22 22 import string 23 23 from zope.i18n import translate 24 from zope.interface import implements 24 25 from random import SystemRandom as r 25 26 from waeup.kofa.interfaces import IKofaUtils … … 37 38 return True 38 39 39 class KofaUtils (grok.GlobalUtility):40 class KofaUtils: 40 41 """A collection of parameters and methods subject to customization. 42 41 43 """ 42 grok.implements(IKofaUtils)44 implements(IKofaUtils) 43 45 # This the only place where we define the portal language 44 46 # which is used for the translation of system messages
Note: See TracChangeset for help on using the changeset viewer.