Spelling error on .replace()

This commit is contained in:
Anton Hvornum 2022-08-12 19:32:42 +02:00
parent 7b06da280d
commit 7b4940ef6d
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 1 additions and 1 deletions

View File

@ -1131,7 +1131,7 @@ class Installer:
return SysCommand(f"/usr/bin/arch-chroot {self.target} sh -c \"chsh -s {shell} {user}\"").exit_code == 0
def chown(self, owner :str, path :str, options :List[str] = []) -> bool:
cleaned_path = path.repalce('\'', '\\\'')
cleaned_path = path.replace('\'', '\\\'')
return SysCommand(f"/usr/bin/arch-chroot {self.target} sh -c 'chown {' '.join(options)} {owner} {cleaned_path}'").exit_code == 0
def create_file(self, filename :str, owner :Optional[str] = None) -> InstallationFile: