diff --git a/boto/gs/key.py b/boto/gs/key.py index c4fcf01f09..bc49e24335 100644 --- a/boto/gs/key.py +++ b/boto/gs/key.py @@ -270,7 +270,7 @@ def send_file(self, fp, headers=None, cb=None, num_cb=10, :type fp: file :param fp: The file pointer to upload. The file pointer must - point point at the offset from which you wish to upload. + point at the offset from which you wish to upload. ie. if uploading the full file, it should point at the start of the file. Normally when a file is opened for reading, the fp will point at the first byte. See the diff --git a/boto/s3/key.py b/boto/s3/key.py index 8e00d12e37..d7cbe933ae 100644 --- a/boto/s3/key.py +++ b/boto/s3/key.py @@ -713,7 +713,7 @@ def send_file(self, fp, headers=None, cb=None, num_cb=10, :type fp: file :param fp: The file pointer to upload. The file pointer must - point point at the offset from which you wish to upload. + point at the offset from which you wish to upload. ie. if uploading the full file, it should point at the start of the file. Normally when a file is opened for reading, the fp will point at the first byte. See the