mirror of
https://github.com/ansible/awx.git
synced 2026-02-16 02:30:01 -03:30
fix a typo in the playbook discovery tooling
This commit is contained in:
@@ -199,7 +199,7 @@ class ProjectOptions(models.Model):
|
|||||||
results = []
|
results = []
|
||||||
project_path = self.get_project_path()
|
project_path = self.get_project_path()
|
||||||
if project_path:
|
if project_path:
|
||||||
for dirpath, dirnames, filenames in os.walk(smart_str(project_path, followlinks=settings.AWX_SHOW_PLAYBOOK_LINKS)):
|
for dirpath, dirnames, filenames in os.walk(smart_str(project_path), followlinks=settings.AWX_SHOW_PLAYBOOK_LINKS):
|
||||||
if skip_directory(dirpath):
|
if skip_directory(dirpath):
|
||||||
continue
|
continue
|
||||||
for filename in filenames:
|
for filename in filenames:
|
||||||
|
|||||||
Reference in New Issue
Block a user