fix a typo in the playbook discovery tooling

This commit is contained in:
Ryan Petrello 2020-05-27 10:24:34 -04:00
parent 61d5dc4cb2
commit 8b97e3f8bb
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -199,7 +199,7 @@ class ProjectOptions(models.Model):
results = []
project_path = self.get_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):
continue
for filename in filenames: