Skip to content

Commit

Permalink
typos I noticed while using the tools
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilleGorines committed Sep 7, 2023
1 parent d4f535c commit e644349
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bu_isciii/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions bu_isciii/scratch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit e644349

Please sign in to comment.