Skip to content

Commit 8e9e4f9

Browse files
authored
Update tdr-test.py
print() python3 compatibility
1 parent 26fa0da commit 8e9e4f9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tdr-test/tdr-test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ def grab_intf(i):
8989

9090
for i in intfs:
9191
title = "Interfaces: " + i
92-
print title
92+
print(title)
9393
target.write(title)
94-
print intfs[i]
94+
print(intfs[i])
9595
target.write(intfs[i])
96-
print "\n\n"
96+
print("\n\n")
9797
target.write("\n\n")
9898

99-
target.close()
99+
target.close()

0 commit comments

Comments
 (0)