mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 14:50:16 +00:00
Put a space between marker name and value
Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
+1
-1
@@ -1245,7 +1245,7 @@ def clean_resolved_dep(dep, is_top_level=False, pipfile_entry=None):
|
||||
else:
|
||||
pipfile_marker = next((k for k in dep_keys if k in allowed_marker_keys), None)
|
||||
if pipfile_marker:
|
||||
lockfile['markers'] = "{0}{1}".format(pipfile_marker, pipfile_entry[pipfile_marker])
|
||||
lockfile['markers'] = "{0} {1}".format(pipfile_marker, pipfile_entry[pipfile_marker])
|
||||
return {name: lockfile}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user