Changeset 8668
- Timestamp:
- 08/28/08 11:31:50 (3 months ago)
- Files:
-
- django/trunk/django/utils/timesince.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/utils/timesince.py
r8579 r8668 61 61 """ 62 62 if not now: 63 if d.tzinfo:63 if getattr(d, 'tzinfo', None): 64 64 now = datetime.datetime.now(LocalTimezone(d)) 65 65 else:
