Changeset 6620
- Timestamp:
- Mar 26, 2009, 8:14:20 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/utilities/system_tools.py
r6613 r6620 340 340 341 341 # open 'net file 342 proxy = urllib2.ProxyHandler({'http': 'http://'+proxyuser+':'+proxypass+'@'+httpproxy}) 342 proxy = urllib2.ProxyHandler({'http': 'http://'+proxyuser+':'+proxypass 343 +'@'+httpproxy}) 343 344 authinfo = urllib2.HTTPBasicAuthHandler() 344 345 opener = urllib2.build_opener(proxy, authinfo, urllib2.HTTPHandler) … … 364 365 # @param files A list of files (or directories) to tar. 365 366 # @param tarfile The created tarfile name. 367 # @note We use gzip compression. 366 368 def tar_file(files, tarname): 367 369 '''Compress a file or directory into a tar file.'''
Note: See TracChangeset
for help on using the changeset viewer.