AttributeError: module 'os' has no attribute 'normpath' from meta_vars() in environ.py
rigzba21 opened this issue · 1 comments
rigzba21 commented
Hi!
Running into an issue where the call to meta_vars
in environ.py
on this line here is resulting in AttributeError: module 'os' has no attribute 'normpath'
It looks like
git_url = os.normpath(os.path.join(meta.path, git_url))
could be changed to
git_url = os.path.normpath(os.path.join(meta.path, git_url))