Changeset 327

Show
Ignore:
Timestamp:
07/26/07 13:57:34 (1 year ago)
Author:
migurski
Message:

Changed status print format

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/py/ModestMaps/__init__.py

    r326 r327  
    9393         
    9494        if verbose: 
    95             print 'Requesting', urls, 'in thread', thread.get_ident(), '- attempt no.', attempt 
     95            print 'Requesting', urls, '- attempt no.', attempt, 'in thread', thread.get_ident() 
    9696 
    9797        # this is the time-consuming part 
     
    102102        except: 
    103103            if verbose: 
    104                 print 'Failed', urls, 'in thread', thread.get_ident(), '- attempt no.', attempt 
     104                print 'Failed', urls, '- attempt no.', attempt, 'in thread', thread.get_ident() 
    105105 
    106106            if attempt < TileRequest.MAX_ATTEMPTS: 
     
    111111        else: 
    112112            if verbose: 
    113                 print 'Received', urls, 'in thread', thread.get_ident(), '- attempt no.', attempt 
     113                print 'Received', urls, '- attempt no.', attempt, 'in thread', thread.get_ident() 
    114114 
    115115        if lock.acquire():