Allow the unredacted package link URL to prevent environment variable from being redacted. ****

This commit is contained in:
Matt Davis
2022-08-26 00:11:00 -04:00
committed by Oz N Tiram
parent d630506138
commit afba3e49d1
+1 -1
View File
@@ -197,7 +197,7 @@ def import_requirements(project, r=None, dev=False):
if package.name not in BAD_PACKAGES:
if package.link is not None:
package_string = (
f"-e {package.link}" if package.editable else str(package.link)
f"-e {package.link}" if package.editable else str(package.link._url)
)
project.add_package_to_pipfile(package_string, dev=dev)
else: