Debug print statement

This commit is contained in:
psakiev 2023-01-11 05:29:58 -07:00
parent 7fa16089fc
commit 047110c086

View File

@ -38,7 +38,12 @@ def check_blame(element, file_name, line=None):
if line is not None: if line is not None:
annotation += ":%d" % line annotation += ":%d" % line
assert file_name in element_line try:
assert file_name in element_line
except Exception:
print(output)
finally:
assert file_name in element_line
def test_config_blame(config): def test_config_blame(config):