Codebase list s3cmd / fa76617
Imported Upstream version 0.9.8.2 Gianfranco Costamagna 8 years ago
5 changed file(s) with 15 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 s3cmd 0.9.8.2 - 2008-06-27
1 =============
2 * Bugfix release. Re-upload file if Amazon doesn't send ETag
3 back.
4
05 s3cmd 0.9.8.1 - 2008-06-27
16 =============
27 * Bugfix release. Fixed 'mb' and 'rb' commands again.
00 Metadata-Version: 1.0
11 Name: s3cmd
2 Version: 0.9.8.1
2 Version: 0.9.8.2
33 Summary: S3cmd is a tool for managing Amazon S3 storage space.
44 Home-page: http://s3tools.logix.cz
55 Author: Michal Ludvig
00 package = "s3cmd"
1 version = "0.9.8.1"
1 version = "0.9.8.2"
22 url = "http://s3tools.logix.cz"
33 license = "GPL version 2"
44 short_description = "S3cmd is a tool for managing Amazon S3 storage space."
380380 info("Redirected to: %s" % (redir_hostname))
381381 return self.send_file(request, file)
382382
383 # S3 from time to time doesn't send ETag back in a response :-(
384 # Force re-upload here.
385 if not response['headers'].has_key('etag'):
386 response['headers']['etag'] = ''
387
383388 debug("MD5 sums: computed=%s, received=%s" % (md5_computed, response["headers"]["etag"]))
384389 if response["headers"]["etag"].strip('"\'') != md5_hash.hexdigest():
385390 warning("MD5 Sums don't match!")
10501050 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10511051
10521052 """)
1053 sys.stderr.write("S3cmd: %s\n" % PkgInfo.version)
1054 sys.stderr.write("Python: %s\n" % sys.version.replace('\n', ' '))
1055 sys.stderr.write("\n")
10531056 sys.stderr.write(traceback.format_exc(sys.exc_info())+"\n")
10541057 sys.stderr.write("""
10551058 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!