Skip to content

Commit 70a2b27

Browse files
committed
fix noxfile tag commit msg
1 parent 2e86b33 commit 70a2b27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ def tag(session: Session) -> None:
353353

354354
# stage, commit, tag, and push version bump
355355
session.run("git", "add", "--all", external=True)
356-
session.run("git", "commit", "-m", repr(f"version {new_version}"), external=True)
356+
session.run("git", "commit", "-m", f"version {new_version}", external=True)
357357
session.run("git", "tag", version, external=True)
358358
session.run("git", "push", "origin", "main", "--tags", external=True)
359359

0 commit comments

Comments
 (0)