Changeset 3531
- Timestamp:
- 30 Jun 2008, 17:03:53 (16 years ago)
- Location:
- waeup/trunk/src/waeup/hostel
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/trunk/src/waeup/hostel/hostel.py
r3529 r3531 1 import grok 1 2 from waeup.baseitem import BaseItem 3 from interfaces import IHostel 4 2 5 3 6 class Hostel(BaseItem): 4 pass 7 """This is a hostel record. 8 """ 9 grok.implements(IHostel) 10 11 def __init__(self, name=u'Unnamed Hostel', **kw): 12 super(Hostel, self).__init__(**kw) 13 self.name = name
Note: See TracChangeset for help on using the changeset viewer.