Skip to content

Commit

Permalink
fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
s-hertel committed Feb 18, 2020
1 parent 1bada30 commit 72cbf6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/cli/playbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _process_block(b):
if isinstance(task, Block):
taskmsg += _process_block(task)
else:
if task.action == 'meta' and task.system_tags == True:
if task.action == 'meta' and task.system_tags is True:
continue

all_tags.update(task.tags)
Expand Down

0 comments on commit 72cbf6c

Please sign in to comment.