Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chdir should output to stdout #161

Closed
SeanBryan51 opened this issue Sep 26, 2023 · 0 comments · Fixed by #260
Closed

chdir should output to stdout #161

SeanBryan51 opened this issue Sep 26, 2023 · 0 comments · Fixed by #260
Labels
enhancement New feature or request

Comments

@SeanBryan51
Copy link
Collaborator

The chdir context manager should log to stdout in verbose mode when changing directories:

@contextlib.contextmanager
def chdir(newdir: Path):
"""Context manager `cd`."""
prevdir = Path.cwd()
os.chdir(newdir.expanduser())
try:
yield
finally:
os.chdir(prevdir)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant