diff options
Diffstat (limited to 'lib/ansible/playbook/base.py')
-rw-r--r-- | lib/ansible/playbook/base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/ansible/playbook/base.py b/lib/ansible/playbook/base.py index b4b34bd9df..457b9e08c1 100644 --- a/lib/ansible/playbook/base.py +++ b/lib/ansible/playbook/base.py @@ -183,8 +183,6 @@ class Base: # Walk all attributes in the class. We sort them based on their priority # so that certain fields can be loaded before others, if they are dependent. - # FIXME: we currently don't do anything with private attributes but - # may later decide to filter them out of 'ds' here. base_attributes = self._get_base_attributes() for name, attr in sorted(base_attributes.items(), key=operator.itemgetter(1)): # copy the value over unless a _load_field method is defined |