From c84a21e2b5ffb5ce2178d8235fa2f30226cda477 Mon Sep 17 00:00:00 2001 From: Don Kim Date: Thu, 11 Jan 2018 10:19:25 +0900 Subject: [PATCH] Fix typo in PipenvProject.assert_has_lockfile --- pipenvlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenvlib.py b/pipenvlib.py index 07f3174..b3b0635 100644 --- a/pipenvlib.py +++ b/pipenvlib.py @@ -76,7 +76,7 @@ class PipenvProject(object): def assert_has_lockfile(self): """Asserts that the Pipfile.lock exists.""" - assert os.path.isfile(self._pipfile_path) + assert os.path.isfile(self._lockfile_path) def _get_section_of_pipfile(self, section, target): def gen():