From: Dirk Mueller Date: Sat, 1 Jun 2013 12:52:45 +0000 (+0200) Subject: Fix AttributeError typo X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=af055f6e325ccbf6d44ee39c97dc10a6704efda4;p=openstack-build%2Fcinder-build.git Fix AttributeError typo Fixes Bug LP #1186566 Change-Id: I8211d365c4d3532cd6ffc3b3041661ff6b9e637f --- diff --git a/cinder/volume/drivers/san/hp/hp_3par_common.py b/cinder/volume/drivers/san/hp/hp_3par_common.py index 946890499..55366ce8e 100644 --- a/cinder/volume/drivers/san/hp/hp_3par_common.py +++ b/cinder/volume/drivers/san/hp/hp_3par_common.py @@ -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),