mamba-org/boa

AttributeError: module 'os' has no attribute 'normpath' from meta_vars() in environ.py

rigzba21 opened this issue · 1 comments

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))

Closing this issue as #314 has been merged. Thanks all!