From 51255aed9b6a5b6cfdd229456d3ab41bfcb073f8 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Mon, 11 Jan 2016 09:48:25 -0800 Subject: [PATCH] Fix typo in API docs This typo caused a SyntaxError when attempting to run the example in the API docs. --- docsite/rst/developing_api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/developing_api.rst b/docsite/rst/developing_api.rst index 319417672e..99dea5d4af 100644 --- a/docsite/rst/developing_api.rst +++ b/docsite/rst/developing_api.rst @@ -53,7 +53,7 @@ In 2.0 things get a bit more complicated to start, but you end up with much more name = "Ansible Play", hosts = 'localhost', gather_facts = 'no', - tasks = [ dict(action=dict(module='debug', args=(msg='Hello Galaxy!'))) ] + tasks = [ dict(action=dict(module='debug', args=dict(msg='Hello Galaxy!'))) ] ) play = Play().load(play_source, variable_manager=variable_manager, loader=loader)