Fix iot exception definition

This commit is contained in:
Toshiya Kawasaki 2018-01-14 14:39:24 +09:00
parent 272b4802c3
commit 056a4e4672

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
)