From 485da19d7cce73975dfd353248210a700b14423d Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Thu, 11 Oct 2018 11:55:11 -0400 Subject: [PATCH] Make pre a kwarg Signed-off-by: Dan Ryan --- pipenv/cli/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli/command.py b/pipenv/cli/command.py index 3525ef98..1ce9fee9 100644 --- a/pipenv/cli/command.py +++ b/pipenv/cli/command.py @@ -308,7 +308,7 @@ def lock( ensure_project(three=state.three, python=state.python, pypi_mirror=state.pypi_mirror) if state.installstate.requirementstxt: do_init(dev=state.installstate.dev, requirements=state.installstate.requirementstxt, - pypi_mirror=state.pypi_mirror, state.installstate.pre) + pypi_mirror=state.pypi_mirror, pre=state.installstate.pre) do_lock( clear=state.clear, pre=state.installstate.pre,