Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Jun 20, 2024
1 parent bfc6141 commit b186756
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 @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev3"
version = "0.0.0.dev4"
name = "GitTidy"
requires-python = ">=3.10"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/gittidy/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def log(
cmd.append(revision_range)
if paths:
cmd.extend(["--"] + (paths if isinstance(paths, list) else [paths]))
return self.run_command(cmd).output
return self.run_command(cmd).output or ""

@logger.sectioner("Git: Set User")
def set_user(
Expand Down

0 comments on commit b186756

Please sign in to comment.