Commit b4c05265 by Michael DeHaan

Merge pull request #4975 from mattt416/fix_rax_network

Add missing exception name
parents 82a93875 8cd46593
...@@ -106,7 +106,7 @@ def cloud_network(module, state, label, cidr): ...@@ -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':
......
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