From 22ce94f98637d9071c045036363fa76b32906ee3 Mon Sep 17 00:00:00 2001 From: Simon Deleersnijder Date: Tue, 13 Nov 2018 13:56:25 +0100 Subject: [PATCH] Fix notification typo --- catkin_tools/execution/controllers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/catkin_tools/execution/controllers.py b/catkin_tools/execution/controllers.py index 5f54be46..4d6ed2ba 100644 --- a/catkin_tools/execution/controllers.py +++ b/catkin_tools/execution/controllers.py @@ -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 @@ -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( @@ -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(