Skip to content

Commit abc5be6

Browse files
committed
Debugging
1 parent deaadb1 commit abc5be6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyperformance/_pyproject_toml.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ def load_pyproject_toml(filename, *, name=None, tools=None, requirefiles=True):
8686
text = infile.read()
8787

8888
symlink = os.path.join(filename, text.strip())
89-
if os.path.exists(symlink):
89+
print(filename, symlink)
90+
if os.path.isfile(symlink):
91+
print('following')
9092
return load_pyproject_toml(
9193
symlink, name=name, tools=tools, requireFiles=requireFiles
9294
)

0 commit comments

Comments
 (0)