Skip to content

Commit

Permalink
Remove debug print statements from tools/check_encoding.py
Browse files Browse the repository at this point in the history
  • Loading branch information
climbfuji committed May 12, 2020
1 parent 2fb92e8 commit 4f73869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/check_encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
SUFFICES = [ '.f', '.F', '.f90', '.F90', '.meta' ]

for root, dirs, files in os.walk(os.getcwd()):
print root, dirs, files
#print root, dirs, files
for file in files:
suffix = os.path.splitext(file)[1]
print file, suffix
#print file, suffix
if suffix in SUFFICES:
with open(os.path.join(root, file)) as f:
contents = f.read()
Expand Down

0 comments on commit 4f73869

Please sign in to comment.