Changeset 3939
- Timestamp:
- 9 Feb 2009, 21:33:25 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/hostel/hostel.py
r3531 r3939 1 1 import grok 2 2 from waeup.baseitem import BaseItem 3 from interfaces import IHostel3 from waeup.interfaces import IHostel 4 4 5 5 6 class Hostel( BaseItem):6 class Hostel(grok.Container): 7 7 """This is a hostel record. 8 8 """ … … 12 12 super(Hostel, self).__init__(**kw) 13 13 self.name = name 14 15 grok.global_utility(Hostel, provides=IHostel)
Note: See TracChangeset for help on using the changeset viewer.