Changeset 1409 for trunk/pylucid/PyLucid/system/utils.py
- Timestamp:
- 02/14/08 14:53:16 (9 months ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/system/utils.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/system/utils.py
r1304 r1409 25 25 add the attribute "debug" to the request object. 26 26 """ 27 if settings.DEBUG and\27 if settings.DEBUG or \ 28 28 request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS: 29 29 request.debug = True 30 30 else: 31 31 request.debug = False 32 32 33 33 34 def get_uri_base():
