diff options
Diffstat (limited to 'scripts/check-pr-title-and-commit-messages.py')
-rwxr-xr-x | scripts/check-pr-title-and-commit-messages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-pr-title-and-commit-messages.py b/scripts/check-pr-title-and-commit-messages.py index 8fe3ca79..f7376e98 100755 --- a/scripts/check-pr-title-and-commit-messages.py +++ b/scripts/check-pr-title-and-commit-messages.py @@ -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) |