Fix wrong name errors caused in previous commit

This commit is contained in:
Ellwood Zwovic
2017-07-26 02:27:01 -07:00
parent 2f6357e40e
commit 64bc1630df
2 changed files with 7 additions and 8 deletions

View File

@@ -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):