Merge "Fix AttributeError typo"

This commit is contained in:
Jenkins
2013-06-02 16:00:31 +00:00
committed by Gerrit Code Review

View File

@@ -761,12 +761,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),