Merge pull request #1746 from Brett55/master

- Updated ResourceAlreadyExistsException(LogsClientError) to latest msg
This commit is contained in:
Steve Pulec 2018-09-22 16:30:56 -04:00 committed by GitHub
commit 793e520c90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,5 +29,5 @@ class ResourceAlreadyExistsException(LogsClientError):
self.code = 400
super(ResourceAlreadyExistsException, self).__init__(
'ResourceAlreadyExistsException',
'The specified resource already exists.'
'The specified log group already exists'
)