diff --git a/bu_isciii/clean.py b/bu_isciii/clean.py index fd590c86..fd821764 100644 --- a/bu_isciii/clean.py +++ b/bu_isciii/clean.py @@ -152,7 +152,7 @@ def show_removable(self, to_stdout=True): """ if to_stdout: folders = ", ".join(self.delete_folders) - stderr.print(f"The following folders will be purge: {folders}") + stderr.print(f"The following folders will be purged: {folders}") files = ", ".join(self.delete_files) stderr.print(f"The following files will be deleted: {files}") return diff --git a/bu_isciii/scratch.py b/bu_isciii/scratch.py index 1ca5abd9..a2902ceb 100644 --- a/bu_isciii/scratch.py +++ b/bu_isciii/scratch.py @@ -83,7 +83,7 @@ def copy_scratch(self): f.write("Origin service directory: " + self.service_dir + "\n") f.close() stderr.print( - "[green]Successfully copyed the directory to %s" + "[green]Successfully copied the directory to %s" % self.scratch_path, highlight=False, ) @@ -118,7 +118,7 @@ def revert_copy_scratch(self): rsync_command = self.rsync_command + self.scratch_path + " " + dest_dir subprocess.run(rsync_command, shell=True, check=True) stderr.print( - "[green]Successfully copyed the directory to %s" % dest_folder, + "[green]Successfully copied the directory to %s" % dest_folder, highlight=False, ) else: