Merge pull request #10558 from hagbarddenstore/devel
Always define error before using it
This commit is contained in:
commit
1f2e60f251
1 changed files with 2 additions and 0 deletions
|
@ -382,6 +382,8 @@ class Ec2Inventory(object):
|
||||||
for instance in instances:
|
for instance in instances:
|
||||||
self.add_rds_instance(instance, region)
|
self.add_rds_instance(instance, region)
|
||||||
except boto.exception.BotoServerError, e:
|
except boto.exception.BotoServerError, e:
|
||||||
|
error = e.reason
|
||||||
|
|
||||||
if e.error_code == 'AuthFailure':
|
if e.error_code == 'AuthFailure':
|
||||||
error = self.get_auth_error_message()
|
error = self.get_auth_error_message()
|
||||||
if not e.reason == "Forbidden":
|
if not e.reason == "Forbidden":
|
||||||
|
|
Loading…
Reference in a new issue