Merge pull request #4 from dgkim5360/fix-typo

Fix typo in PipenvProject.assert_has_lockfile
This commit is contained in:
2018-01-11 08:08:28 -05:00
committed by GitHub
+1 -1
View File
@@ -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():