Changeset 3951 for django/trunk/django/templatetags/__init__.py
- Timestamp:
- 10/30/06 14:50:27 (2 years ago)
- Files:
-
- django/trunk/django/templatetags/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/templatetags/__init__.py
r2809 r3951 3 3 for a in settings.INSTALLED_APPS: 4 4 try: 5 __path__.extend(__import__(a + '.templatetags', '', '', ['']).__path__)5 __path__.extend(__import__(a + '.templatetags', {}, {}, ['']).__path__) 6 6 except ImportError: 7 7 pass
