Commit 8cd46593 by Matt Thompson

Add missing exception name

parent 82a93875
......@@ -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':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment