Skip to content

Commit fb7f87d

Browse files
committed
debug
1 parent 3f84939 commit fb7f87d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_exposition.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,8 @@ def my_auth_handler(url, method, timeout, headers, data):
360360
return tls_auth_handler(url, method, timeout, headers, data, os.path.join(certs_dir, "cert.pem"), os.path.join(certs_dir, "key.pem"))
361361

362362
print("HERE")
363-
for root, dirs, files in os.walk(os.path.dirname(os.path.realpath(__file__))):
363+
path = os.path.dirname(os.path.realpath(__file__))
364+
for root, dirs, files in os.walk(path):
364365
level = root.replace(path, '').count(os.sep)
365366
indent = ' ' * 4 * level
366367
print(f"{indent}{os.path.basename(root)}/")

0 commit comments

Comments
 (0)