Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Oct 24, 2023
1 parent a4540c7 commit 7666046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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.dev155"
version = "0.0.0.dev156"
name = "RepoDynamics"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
2 changes: 2 additions & 0 deletions src/repodynamics/git.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import json
from typing import Literal, Optional
from pathlib import Path
import re
Expand Down Expand Up @@ -333,6 +334,7 @@ def get_commits(
)

matches = pattern.findall(out)
self._logger.success(f"Found {len(matches)} commits.", json.dumps(matches, indent=3))

commits = []
for match in matches:
Expand Down

0 comments on commit 7666046

Please sign in to comment.