From e2872a984a324211936e8995213f8749d72342d5 Mon Sep 17 00:00:00 2001
From: Matt Martz <matt@sivel.net>
Date: Mon, 5 Oct 2015 12:58:47 -0500
Subject: [PATCH] Switch from old style replacer code to new style for
 ansible.module_utils.basic

---
 lib/ansible/modules/extras/cloud/xenserver_facts.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/ansible/modules/extras/cloud/xenserver_facts.py b/lib/ansible/modules/extras/cloud/xenserver_facts.py
index 54ca3389752..149030925f9 100644
--- a/lib/ansible/modules/extras/cloud/xenserver_facts.py
+++ b/lib/ansible/modules/extras/cloud/xenserver_facts.py
@@ -192,7 +192,6 @@ def main():
 
     module.exit_json(ansible=data)
 
-# this is magic, see lib/ansible/module_common.py
-#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
+from ansible.module_utils.basic import *
 
 main()