Skip to content

Commit 4f73869

Browse files
committed
Remove debug print statements from tools/check_encoding.py
1 parent 2fb92e8 commit 4f73869

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/check_encoding.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
SUFFICES = [ '.f', '.F', '.f90', '.F90', '.meta' ]
99

1010
for root, dirs, files in os.walk(os.getcwd()):
11-
print root, dirs, files
11+
#print root, dirs, files
1212
for file in files:
1313
suffix = os.path.splitext(file)[1]
14-
print file, suffix
14+
#print file, suffix
1515
if suffix in SUFFICES:
1616
with open(os.path.join(root, file)) as f:
1717
contents = f.read()

0 commit comments

Comments
 (0)