From f9cb5ecc3c88dc497cf591bd02432981046b57d0 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 22 Jun 2016 12:31:13 -0400 Subject: [PATCH] removed extra space as pointed out by @lloydbenson --- lib/ansible/modules/packaging/os/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/os/package.py b/lib/ansible/modules/packaging/os/package.py index f4234b5a472..2ae7c7fbc8e 100644 --- a/lib/ansible/modules/packaging/os/package.py +++ b/lib/ansible/modules/packaging/os/package.py @@ -57,5 +57,5 @@ EXAMPLES = ''' # This uses a variable as this changes per distribution. - name: remove the apache package - package : name={{apache}} state=absent + package: name={{apache}} state=absent '''