Roadmap updates and docs fix. (#28287)

* Update on 2.4 roadmap progress.
* Fix docs syntax for Python 2.
This commit is contained in:
Matt Clay 2017-08-16 10:55:19 -07:00 committed by GitHub
parent 74e502fcc8
commit b52aeeabfa
2 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ Examples of unfixed code:
do_something(variable)
from ansible.module_utils.basic import *
module = AnsibleModule([...])
module = AnsibleModule()
Examples of fixed code:
@ -26,4 +26,4 @@ Examples of fixed code:
do_something(variable)
from ansible.module_utils.basic import AnsibleModule
module = AnsibleModule([...])
module = AnsibleModule()