Browse code

remove useless debug() and print() message

This may have been helpful during development, but it isn't any longer.

Matt Domsch authored on 2015/02/04 23:19:15
Showing 1 changed files
... ...
@@ -1056,8 +1056,6 @@ class S3(object):
1056 1056
     def send_file(self, request, file, labels, buffer = '', throttle = 0, retries = _max_retries, offset = 0, chunk_size = -1):
1057 1057
         method_string, resource, headers = request.get_triplet()
1058 1058
         if S3Request.region_map.get(request.resource['bucket'], None) is None:
1059
-            debug('asking for bucket location')
1060
-            print('asking for bucket location')
1061 1059
             s3_uri = S3Uri('s3://' + request.resource['bucket'])
1062 1060
             region = self.get_bucket_location(s3_uri)
1063 1061
             if region is not None: