Changeset 4497
- Timestamp:
- 02/13/07 00:06:09 (2 years ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/db/models/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r4490 r4497 58 58 Simon Blanchard 59 59 Andrew Brehaut <http://brehaut.net/blog> 60 brut.alll@gmail.com 60 61 Jonathan Buchanan <jonathan.buchanan@gmail.com> 61 62 Antonio Cavedoni <http://cavedoni.com/> django/trunk/django/db/models/__init__.py
r4265 r4497 51 51 52 52 def __getattr__(self, attr): 53 if attr == 'delta': 54 # To fix ticket #3377. Note that normal access to LazyDate.delta 55 # (after construction) will still work, because they don't go 56 # through __getattr__). This is mainly needed for unpickling. 57 raise AttributeError 53 58 return getattr(self.__get_value__(), attr)
