Changeset 327
- Timestamp:
- 07/26/07 13:57:34 (1 year ago)
- Files:
-
- trunk/py/ModestMaps/__init__.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/py/ModestMaps/__init__.py
r326 r327 93 93 94 94 if verbose: 95 print 'Requesting', urls, ' in thread', thread.get_ident(), '- attempt no.', attempt95 print 'Requesting', urls, '- attempt no.', attempt, 'in thread', thread.get_ident() 96 96 97 97 # this is the time-consuming part … … 102 102 except: 103 103 if verbose: 104 print 'Failed', urls, ' in thread', thread.get_ident(), '- attempt no.', attempt104 print 'Failed', urls, '- attempt no.', attempt, 'in thread', thread.get_ident() 105 105 106 106 if attempt < TileRequest.MAX_ATTEMPTS: … … 111 111 else: 112 112 if verbose: 113 print 'Received', urls, ' in thread', thread.get_ident(), '- attempt no.', attempt113 print 'Received', urls, '- attempt no.', attempt, 'in thread', thread.get_ident() 114 114 115 115 if lock.acquire():
