Merge pull request #1812 from scrapy/backport-1.1-pr1801

[backport][1.1] Fix SkipTest() message for botocore import test
This commit is contained in:
Paul Tremberth 2016-02-24 17:52:20 +01:00
commit 5e57169394
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ def skip_if_no_boto():
try:
is_botocore()
except NotConfigured as e:
raise SkipTest(e.message)
raise SkipTest(e)
def get_s3_content_and_delete(bucket, path, with_key=False):
""" Get content from s3 key, and delete key afterwards.