We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5d803d commit 3344b5dCopy full SHA for 3344b5d
1 file changed
app.py
@@ -830,7 +830,7 @@ def _resolve_pr_url(url: str) -> "PRMetadata":
830
def _write_export(result: "BranchComparison", pr_meta: "Optional[PRMetadata]" = None) -> str:
831
"""Write a BranchComparison to a detailed .txt file in the CWD. Returns the file path."""
832
now = datetime.now()
833
- date_str = now.strftime("%Y%m%d")
+ date_str = now.strftime("%Y%m%d-%H%M%S")
834
if pr_meta:
835
owner_safe = pr_meta.owner.replace("/", "-")
836
repo_safe = pr_meta.repo.replace("/", "-")
0 commit comments