Skip to content

Commit

Permalink
Fix bad variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ayjayt committed Nov 14, 2024
1 parent 904bdb7 commit af00e68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion choreographer/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __init__(
self.temp_dir = tempfile.TemporaryDirectory(**temp_args)
self._temp_dir_name = self.temp_dir.name
if self.debug:
print(f"TEMP DIR NAME: {self.temp_dir_name}", file=sys.stderr)
print(f"TEMP DIR NAME: {self._temp_dir_name}", file=sys.stderr)

# Set up process env
new_env = os.environ.copy()
Expand Down

0 comments on commit af00e68

Please sign in to comment.