From 5d3cb636ad67b696927cf160d00a48fa20f2cbe3 Mon Sep 17 00:00:00 2001 From: Thomas Quinot Date: Wed, 5 Aug 2015 11:29:46 +0200 Subject: [PATCH] Minor comment fix --- lib/ansible/playbook/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/playbook/__init__.py b/lib/ansible/playbook/__init__.py index ab3732b41f..37b3ee7503 100644 --- a/lib/ansible/playbook/__init__.py +++ b/lib/ansible/playbook/__init__.py @@ -63,7 +63,7 @@ class Playbook: # set the loaders basedir self._loader.set_basedir(self._basedir) - # dynamically load any plugins from the role directory + # dynamically load any plugins from the playbook directory for name, obj in get_all_plugin_loaders(): if obj.subdir: plugin_path = os.path.join(self._basedir, obj.subdir)