From 3ec3e77d535559d341d19067dd1494fc2cd1aa66 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 30 Jul 2015 13:44:13 -0700 Subject: [PATCH] Better status conditional from dagwieers --- cloud/vmware/vsphere_copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/vmware/vsphere_copy.py b/cloud/vmware/vsphere_copy.py index 2e983589749..446f62bd5c5 100644 --- a/cloud/vmware/vsphere_copy.py +++ b/cloud/vmware/vsphere_copy.py @@ -154,7 +154,7 @@ def main(): module.fail_json(msg=str(e), status=status, reason=str(e), url=url) status = r.getcode() - if satus >= 200 and status < 300: + if 200 <= status < 300: module.exit_json(changed=True, status=status, reason=r.msg, url=url) else: length = r.headers.get('content-length', None)