Fix AttributeError typo

Fixes Bug LP #1186566

Change-Id: I8211d365c4d3532cd6ffc3b3041661ff6b9e637f
This commit is contained in:
Dirk Mueller
2013-06-01 14:52:45 +02:00
parent 0b09f781c6
commit af055f6e32

View File

@@ -706,12 +706,12 @@ exit
try:
extra['name'] = snapshot['display_name']
except AttribteError:
except AttributeError:
pass
try:
extra['description'] = snapshot['display_description']
except AttribteError:
except AttributeError:
pass
optional = {'comment': json.dumps(extra),