Add missing exception name

reviewable/pr18780/r1
Matt Thompson 11 years ago
parent 3183d4776f
commit cc36bb8e95

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

Loading…
Cancel
Save