We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using: path.py (10.5) on Debian 9 (stretch) The error message is: Install path.py (via pip)
Install path.py (via pip)
After installing path.py
build/build.py", line 60, in build basedir = path(basedir) NameError: global name 'path' is not defined
The problem is that path should be Path
from path import Path basedir = Path(basedir) oe = Path(fe.replace("\\", "/"))[len(basedir):] jar_files = (Path(__file__).dirname() / "jar.files").lines(retain=False) xpi_files = (Path(__file__).dirname() / "xpi.files").lines(retain=False)
After changing references from path to Path -- the xpi was built.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using: path.py (10.5) on Debian 9 (stretch)
The error message is:
Install path.py (via pip)
After installing path.py
The problem is that path should be Path
After changing references from path to Path -- the xpi was built.
The text was updated successfully, but these errors were encountered: