From 056a4e4672ece0fce71d4c3ea95abf92a7501c2c Mon Sep 17 00:00:00 2001 From: Toshiya Kawasaki Date: Sun, 14 Jan 2018 14:39:24 +0900 Subject: [PATCH] Fix iot exception definition --- moto/iot/exceptions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/moto/iot/exceptions.py b/moto/iot/exceptions.py index 47435eeb5..7bbdb706d 100644 --- a/moto/iot/exceptions.py +++ b/moto/iot/exceptions.py @@ -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 )