Skip to content

Commit

Permalink
Merge pull request #568 from sever-sever/T6238
Browse files Browse the repository at this point in the history
T6238: Fix title check commit message for f-string
  • Loading branch information
dmbaturin authored Apr 16, 2024
2 parents eeb1a98 + 2233e46 commit 3a674cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check-pr-title-and-commit-messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def check_pr_title(title):

def check_commit_message(title):
if not re.match(commit_regex, title):
print("Commit title '{title}' does not match the required format!")
print(f"Commit title '{title}' does not match the required format!")
print("Valid title example: T99999: make IPsec secure")
sys.exit(1)

Expand Down

0 comments on commit 3a674cf

Please sign in to comment.