Changeset 65 for djac/trunk/tracaccess.py
- Timestamp:
- 12/27/06 23:16:30 (2 years ago)
- Files:
-
- 1 modified
-
djac/trunk/tracaccess.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
djac/trunk/tracaccess.py
r54 r65 48 48 except urllib2.HTTPError, e: 49 49 print 'Login page returned', e 50 if e.code != 401:50 if e.code not in (401, 403): 51 51 raise 52 52 return urllib2.urlopen(report_url)
