fix typo in storagemanager/s3

This commit is contained in:
Albert Yi 2018-03-28 17:23:07 -07:00
parent 18dd47c557
commit fa9442209e

View File

@ -37,7 +37,7 @@ class StorageManager::S3 < StorageManager
def open(path)
file = Tempfile.new(binmode: true)
client.get_object(bucket: bucket: key: path, response_target: file)
client.get_object(bucket: bucket, key: path, response_target: file)
file
end
end