fix(kiauh): typo

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2024-03-03 20:34:21 +01:00
parent 7c754de08e
commit c0caab13b3
5 changed files with 10 additions and 10 deletions

View File

@@ -49,7 +49,7 @@ def upload_logfile(logfile: LogFile) -> None:
try:
response = urllib.request.urlopen(req)
link = response.read().decode("utf-8")
Logger.print_ok("Upload successfull! Access it via the following link:")
Logger.print_ok("Upload successful! Access it via the following link:")
Logger.print_ok(f">>>> {link}", False)
except Exception as e:
Logger.print_error(f"Uploading logfile failed!")

View File

@@ -56,7 +56,7 @@ class BackupManager:
try:
Path(target).mkdir(exist_ok=True)
shutil.copyfile(file, target.joinpath(filename))
Logger.print_ok("Backup successfull!")
Logger.print_ok("Backup successful!")
except OSError as e:
Logger.print_error(f"Unable to backup '{file}':\n{e}")
else:
@@ -77,7 +77,7 @@ class BackupManager:
target.joinpath(f"{name.lower()}-{date}-{time}"),
ignore=self.ignore_folders_func,
)
Logger.print_ok("Backup successfull!")
Logger.print_ok("Backup successful!")
except OSError as e:
Logger.print_error(f"Unable to backup directory '{source}':\n{e}")
return

View File

@@ -140,7 +140,7 @@ class RepoManager:
command = ["git", "clone", self.repo, self.target_dir]
subprocess.run(command, check=True)
Logger.print_ok("Clone successfull!")
Logger.print_ok("Clone successful!")
except subprocess.CalledProcessError as e:
log = f"Error cloning repository {self.repo}: {e.stderr.decode()}"
Logger.print_error(log)
@@ -151,7 +151,7 @@ class RepoManager:
command = ["git", "checkout", f"{self.branch}"]
subprocess.run(command, cwd=self.target_dir, check=True)
Logger.print_ok("Checkout successfull!")
Logger.print_ok("Checkout successful!")
except subprocess.CalledProcessError as e:
log = f"Error checking out branch {self.branch}: {e.stderr.decode()}"
Logger.print_error(log)

View File

@@ -68,7 +68,7 @@ class GcodeShellCmdExtension(BaseExtension):
im.start_all_instance()
Logger.print_ok("Installing G-Code Shell Command extension successfull!")
Logger.print_ok("Installing G-Code Shell Command extension successful!")
def remove_extension(self, **kwargs) -> None:
extension_installed = check_file_exist(EXTENSION_TARGET_PATH)

View File

@@ -71,7 +71,7 @@ def create_python_venv(target: Path) -> None:
if not target.exists():
try:
venv.create(target, with_pip=True)
Logger.print_ok("Setup of virtualenv successfull!")
Logger.print_ok("Setup of virtualenv successful!")
except OSError as e:
Logger.print_error(f"Error setting up virtualenv:\n{e}")
raise
@@ -111,7 +111,7 @@ def update_python_pip(target: Path) -> None:
Logger.print_error("Updating pip failed!")
return
Logger.print_ok("Updating pip successfull!")
Logger.print_ok("Updating pip successful!")
except FileNotFoundError as e:
Logger.print_error(e)
raise
@@ -140,7 +140,7 @@ def install_python_requirements(target: Path, requirements: Path) -> None:
Logger.print_error("Installing Python requirements failed!")
return
Logger.print_ok("Installing Python requirements successfull!")
Logger.print_ok("Installing Python requirements successful!")
except subprocess.CalledProcessError as e:
log = f"Error installing Python requirements:\n{e.output.decode()}"
Logger.print_error(log)
@@ -183,7 +183,7 @@ def update_system_package_lists(silent: bool, rls_info_change=False) -> None:
Logger.print_error("Updating system package list failed!")
return
Logger.print_ok("System package list updated successfully!")
Logger.print_ok("System package list update successful!")
except subprocess.CalledProcessError as e:
kill(f"Error updating system package list:\n{e.stderr.decode()}")