We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abc5be6 commit 0d53cfcCopy full SHA for 0d53cfc
pyperformance/_pyproject_toml.py
@@ -85,7 +85,7 @@ def load_pyproject_toml(filename, *, name=None, tools=None, requirefiles=True):
85
with open(filename, encoding="utf-8") as infile:
86
text = infile.read()
87
88
- symlink = os.path.join(filename, text.strip())
+ symlink = os.path.join(os.path.dirname(filename), text.strip())
89
print(filename, symlink)
90
if os.path.isfile(symlink):
91
print('following')
0 commit comments