From 8cd465938b017112c57da69a1f8370db162bdd05 Mon Sep 17 00:00:00 2001 From: Matt Thompson Date: Wed, 20 Nov 2013 16:58:19 +0000 Subject: [PATCH] Add missing exception name --- library/cloud/rax_network | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cloud/rax_network b/library/cloud/rax_network index 6c6fc5de6d..e674c24c1f 100644 --- a/library/cloud/rax_network +++ b/library/cloud/rax_network @@ -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':