Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

typos I noticed while using the tools #154

Merged
merged 1 commit into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
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
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
Loading