Fix wrong name errors caused in previous commit
This commit is contained in:
@@ -26,7 +26,7 @@ def download_and_install_package(pipe_to_blender, package: bpkg.Package, install
|
||||
pipe_to_blender.send(messages.InstallError(err))
|
||||
raise
|
||||
|
||||
pipe_to_blender.send(Success())
|
||||
pipe_to_blender.send(messages.Success())
|
||||
|
||||
|
||||
def uninstall_package(pipe_to_blender, package: bpkg.Package, install_path: Path):
|
||||
@@ -41,7 +41,7 @@ def uninstall_package(pipe_to_blender, package: bpkg.Package, install_path: Path
|
||||
for pkgfile in [install_path / Path(p) for p in package.files]:
|
||||
bpkg.utils.rm(pkgfile)
|
||||
|
||||
pipe_to_blender.send(Success())
|
||||
pipe_to_blender.send(messages.Success())
|
||||
|
||||
|
||||
def refresh_repository(pipe_to_blender, repo_storage_path: Path, repository_url: str):
|
||||
|
Reference in New Issue
Block a user