Add missing exception name

pull/4975/head
Matt Thompson 11 years ago
parent 82a9387532
commit 8cd465938b

@ -106,7 +106,7 @@ def cloud_network(module, state, label, cidr):
changed = True changed = True
except Exception, e: except Exception, e:
module.fail_json(msg='%s' % e.message) module.fail_json(msg='%s' % e.message)
except Exception: except Exception, e:
module.fail_json(msg='%s' % e.message) module.fail_json(msg='%s' % e.message)
elif state == 'absent': elif state == 'absent':

Loading…
Cancel
Save