Skip to content

Commit

Permalink
fix printing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
biobootloader committed Jul 22, 2024
1 parent 039ed52 commit 583512f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages=["ragdaemon"]

[project]
name = "ragdaemon"
version = "0.8.1"
version = "0.8.2"
description = "Generate and render a call graph for a Python project."
readme = "README.md"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion ragdaemon/io/local_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def is_git_repo(self, path: Optional[Path | str] = None):
if path:
args.append(Path(path).as_posix())
try:
output = subprocess.run(args, cwd=self.cwd)
output = subprocess.run(args, cwd=self.cwd, capture_output=True)
return output.returncode == 0
except subprocess.CalledProcessError:
return False
Expand Down

0 comments on commit 583512f

Please sign in to comment.