Commit 5c86d1df by Arun Babu Neelicattu Committed by Sébastien Eustace

Fix pip installer error for directory sources (#561)

This change updates the method parameters used when calling
`PipInstaller.install_directory` to remove the `update` parameter.
parent 120f8cda
...@@ -25,7 +25,7 @@ class PipInstaller(BaseInstaller): ...@@ -25,7 +25,7 @@ class PipInstaller(BaseInstaller):
def install(self, package, update=False): def install(self, package, update=False):
if package.source_type == "directory": if package.source_type == "directory":
self.install_directory(package, update=update) self.install_directory(package)
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment