mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
@@ -106,6 +106,8 @@ class Task(Base, Conditional, Taggable, Become):
|
||||
path = ""
|
||||
if hasattr(self, '_ds') and hasattr(self._ds, '_data_source') and hasattr(self._ds, '_line_number'):
|
||||
path = "%s:%s" % (self._ds._data_source, self._ds._line_number)
|
||||
elif hasattr(self._parent._play, '_ds') and hasattr(self._parent._play._ds, '_data_source') and hasattr(self._parent._play._ds, '_line_number'):
|
||||
path = "%s:%s" % (self._parent._play._ds._data_source, self._parent._play._ds._line_number)
|
||||
return path
|
||||
|
||||
def get_name(self):
|
||||
|
||||
Reference in New Issue
Block a user