Add missing exception name

pull/4420/head
Matt Thompson 2013-11-20 16:58:19 +00:00
parent 82a9387532
commit 8cd465938b
1 changed files with 1 additions and 1 deletions

View File

@ -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':