Changeset 6620


Ignore:
Timestamp:
Mar 26, 2009, 8:14:20 AM (15 years ago)
Author:
rwilson
Message:

Minor formatting for line length.

File:
1 edited

Legend:

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

    r6613 r6620  
    340340
    341341    # open 'net file
    342     proxy = urllib2.ProxyHandler({'http': 'http://'+proxyuser+':'+proxypass+'@'+httpproxy})
     342    proxy = urllib2.ProxyHandler({'http': 'http://'+proxyuser+':'+proxypass
     343                                               +'@'+httpproxy})
    343344    authinfo = urllib2.HTTPBasicAuthHandler()
    344345    opener = urllib2.build_opener(proxy, authinfo, urllib2.HTTPHandler)
     
    364365# @param files A list of files (or directories) to tar.
    365366# @param tarfile The created tarfile name.
     367# @note We use gzip compression.
    366368def tar_file(files, tarname):
    367369    '''Compress a file or directory into a tar file.'''
Note: See TracChangeset for help on using the changeset viewer.