Skip to content

Commit 33431cb

Browse files
committed
small typos
1 parent 0a3704b commit 33431cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tools/scripts/ReleaseAutomation/release_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def __init__(self):
173173
error_messages.append(f"Error: {GITHUB_TOKEN_NAME} environment variable not set.")
174174

175175
if not self.yamato_api_token:
176-
error_messages.append("Error: {YAMATO_API_KEY_NAME} environment variable not set.")
176+
error_messages.append(f"Error: {YAMATO_API_KEY_NAME} environment variable not set.")
177177

178178
# Initialize PyGithub and get the repository object
179179
self.github_manager = GithubUtils(self.github_token, self.github_repo)

Tools/scripts/Utils/git_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def create_branch_execute_commands_and_push(config: ReleaseConfig):
5757
new_branch.checkout()
5858

5959
if config.command_to_run_on_release_branch:
60-
print(f"\nExecuting command on branch '{config.release_branch_name}': {' '.join(config.command_to_run_on_release_branch.__name__)}")
60+
print(f"\nExecuting command on branch '{config.release_branch_name}': {config.command_to_run_on_release_branch.__name__}")
6161
config.command_to_run_on_release_branch(config.manifest_path, config.changelog_path, config.validation_exceptions_path, config.package_version)
6262

6363
repo.git.add(config.changelog_path)

0 commit comments

Comments
 (0)