Skip to content

Commit

Permalink
Fixed an exception message in CurrentEnvironmentBackend
Browse files Browse the repository at this point in the history
  • Loading branch information
mikicz committed Feb 19, 2018
1 parent 7a98bf2 commit 665e6d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arca/backend/current_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def validate_settings(self):
def install_requirements(self, *, fl: Optional[Path]=None, requirements: Optional[Iterable[str]]=None,
_action: str="install"):
if _action not in ["install", "uninstall"]:
raise ValueError(f"{_action} is invalid value for _invalid")
raise ValueError(f"{_action} is invalid value for _action")

cmd = [sys.executable, "-m", "pip", _action]

Expand Down

0 comments on commit 665e6d8

Please sign in to comment.