Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix notification typo #527

Merged
merged 1 commit into from
Nov 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions catkin_tools/execution/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def print_exec_summary(self, completed_jobs, warned_jobs, failed_jobs):
number_of_columns)
else:
wide_log("")
wide_log(clr("[{}] No {} succeded.").format(self.label, self.jobs_label))
wide_log(clr("[{}] No {} succeeded.").format(self.label, self.jobs_label))
wide_log("")

# Print out whitelisted jobs
Expand Down Expand Up @@ -363,7 +363,7 @@ def print_compact_summary(self, completed_jobs, warned_jobs, failed_jobs):
notification_msg = []
# Print error summary
if len(completed_jobs) == len(self.jobs) and all(completed_jobs.items()) and len(failed_jobs) == 0:
notification_title = "{} Succeded".format(self.label.capitalize())
notification_title = "{} Succeeded".format(self.label.capitalize())
notification_msg.append("All {} {} succeeded!".format(len(self.jobs), self.jobs_label))

wide_log(clr('[{}] Summary: All {} {} succeeded!').format(
Expand Down Expand Up @@ -397,7 +397,7 @@ def print_compact_summary(self, completed_jobs, warned_jobs, failed_jobs):
wide_log(clr('[{}] Warnings: None.').format(
self.label))
else:
notification_title = "{} Succeded with Warnings".format(self.label.capitalize())
notification_title = "{} Succeeded with Warnings".format(self.label.capitalize())
notification_msg.append("{} {} succeeded with warnings.".format(len(warned_jobs), self.jobs_label))

wide_log(clr('[{}] Warnings: {} {} succeeded with warnings.').format(
Expand Down