Merge pull request #1429 from toshitanian/fix-iot-exception-definition

Fix iot exception definition
This commit is contained in:
Steve Pulec 2018-03-06 22:27:03 -05:00 committed by GitHub
commit f31cf795b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,5 +28,6 @@ class VersionConflictException(IoTClientError):
def __init__(self, name):
self.code = 409
super(VersionConflictException, self).__init__(
'VersionConflictException',
'The version for thing %s does not match the expected version.' % name
)