Skip to content

Commit

Permalink
Fix notification typo (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleersnijder authored and mikepurvis committed Nov 13, 2018
1 parent 2cae17f commit 118bf7c
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 118bf7c

Please # to comment.