Changeset 6673


Ignore:
Timestamp:
Apr 1, 2009, 9:40:46 AM (15 years ago)
Author:
rwilson
Message:

Removed strange corruptions. Possibly introduced by 'meld'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/utilities/system_tools.py

    r6666 r6673  
    345345        print '-'*80
    346346        print ('You need to supply proxy authentication information.  '
    347                'Use environment variables')
    348         print ('HTTP_PROXY, PROXY_USERNAME and PROXY_PASSWORD to bypass '
     347               'Use environment variables\n'
     348               'HTTP_PROXY, PROXY_USERNAME and PROXY_PASSWORD to bypass '
    349349               'entry here:')
    350350        if httpproxy is None:
     
    356356        print '-'*80
    357357
    358     # the proxy URL cannot start with 'http://'
     358    # the proxy URL cannot start with 'http://', we add that later
    359359    httpproxy = httpproxy.lower()
    360360    if httpproxy.startswith('http://'):
     
    407407    o = tarfile.open(tarname, 'r:gz')
    408408    members = o.getmembers()
    409     for member in members:
     409    for member in members:Compute normal depth at gauge location usin
    410410        o.extract(member, target_dir)
    411411    o.close()
Note: See TracChangeset for help on using the changeset viewer.