Skip to content

Commit

Permalink
Fix for non-str ident
Browse files Browse the repository at this point in the history
  • Loading branch information
Shrews committed Jul 12, 2023
1 parent aef73cf commit c5969cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansible_runner/streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def __init__(self, _input=None, status_handler=None, event_handler=None,
else:
project_artifacts = os.path.abspath(os.path.join(self.private_data_dir, 'artifacts'))
if ident := kwargs.get('ident'):
self.artifact_dir = os.path.join(project_artifacts, ident)
self.artifact_dir = os.path.join(project_artifacts, str(ident))
else:
self.artifact_dir = project_artifacts

Expand Down

0 comments on commit c5969cc

Please sign in to comment.