From 13978a7d75509704ccb58b550ff02c7fd30d1d91 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 30 Apr 2015 21:27:29 -0400 Subject: [PATCH] fixed typo --- v2/ansible/cli/playbook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/ansible/cli/playbook.py b/v2/ansible/cli/playbook.py index c2b881d2b6d..eb60bacbd22 100644 --- a/v2/ansible/cli/playbook.py +++ b/v2/ansible/cli/playbook.py @@ -118,7 +118,7 @@ class PlaybookCLI(CLI): only_tags = self.options.tags.split(",") skip_tags = self.options.skip_tags if self.options.skip_tags is not None: - skip_tags = self.ptions.skip_tags.split(",") + skip_tags = self.options.skip_tags.split(",") # initial error check, to make sure all specified playbooks are accessible # before we start running anything through the playbook executor