Remove validate argument, not supported by Travi CI boto version.

This commit is contained in:
Andrey Smirnov
2014-10-01 18:39:35 +04:00
parent f303aabf26
commit a02a90a3d8

View File

@@ -74,5 +74,5 @@ class S3Test(BaseTest):
if path.startswith("public/"):
path = path[7:]
key = self.bucket.get_key(path, validate=True)
key = self.bucket.get_key(path)
return key.get_contents_as_string()