summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2016-02-16 11:01:09 -0500
committerBrian Coca <bcoca@ansible.com>2016-02-16 11:01:09 -0500
commit875ea74621fab45e8d8ee07bcc72ba65c568a069 (patch)
tree2d14e4a935c666b9c93d73ab3b2f30c47bc5cbfc
parent6ddea3e915012a381b53e34b19c2270cf5e4e815 (diff)
parentcebf127d685f06e43dab92b08f5c28067b480a7b (diff)
downloadansible-875ea74621fab45e8d8ee07bcc72ba65c568a069.tar.gz
Merge pull request #14505 from ahartz1/patch-1
Update stated location of common_module.py
-rw-r--r--docsite/rst/developing_modules.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docsite/rst/developing_modules.rst b/docsite/rst/developing_modules.rst
index dc5b7e8f5f..741ec5231b 100644
--- a/docsite/rst/developing_modules.rst
+++ b/docsite/rst/developing_modules.rst
@@ -264,7 +264,7 @@ And failures are just as simple (where 'msg' is a required parameter to explain
module.fail_json(msg="Something fatal happened")
There are also other useful functions in the module class, such as module.sha1(path). See
-lib/ansible/module_common.py in the source checkout for implementation details.
+lib/ansible/module_utils/basic.py in the source checkout for implementation details.
Again, modules developed this way are best tested with the hacking/test-module script in the git
source checkout. Because of the magic involved, this is really the only way the scripts