Skip to content

Commit a5efdae

Browse files
committed
Different debugging
1 parent 99e4d5d commit a5efdae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyperformance/_pyproject_toml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def parse_pyproject_toml(text, rootdir, name=None, *,
5252
tools=None,
5353
requirefiles=True,
5454
):
55+
print("TOML", repr(text))
5556
data = toml.loads(text)
5657
unused = list(data)
5758

@@ -84,7 +85,6 @@ def load_pyproject_toml(filename, *, name=None, tools=None, requirefiles=True):
8485

8586
with open(filename, encoding="utf-8") as infile:
8687
text = infile.read()
87-
print("TOML", filename, repr(text))
8888
data = parse_pyproject_toml(text, rootdir, name,
8989
tools=tools,
9090
requirefiles=requirefiles,

0 commit comments

Comments
 (0)