From 8ad67b44dc7b31eee88cc7d9f42298a9ba094b4c Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 16 Dec 2016 15:17:39 -0500 Subject: removed unused static backport of #19454 --- lib/ansible/playbook/role_include.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ansible/playbook/role_include.py b/lib/ansible/playbook/role_include.py index 7d5b2351d0..d502a34bb3 100644 --- a/lib/ansible/playbook/role_include.py +++ b/lib/ansible/playbook/role_include.py @@ -48,7 +48,6 @@ class IncludeRole(Task): # private as this is a 'module options' vs a task property _allow_duplicates = FieldAttribute(isa='bool', default=True, private=True) - _static = FieldAttribute(isa='bool', default=None, private=True) _private = FieldAttribute(isa='bool', default=None, private=True) def __init__(self, block=None, role=None, task_include=None): @@ -113,7 +112,7 @@ class IncludeRole(Task): #FIXME: find a way to make this list come from object ( attributes does not work as per below) # manual list as otherwise the options would set other task parameters we don't want. - for option in ['static', 'private', 'allow_duplicates']: + for option in ['private', 'allow_duplicates']: if option in ir.args: setattr(ir, option, ir.args.get(option)) -- cgit v1.2.1