1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-07-03 05:29:37 +00:00
8bitworkshop/tools/checkpresets.py

17 lines
392 B
Python
Raw Normal View History

import os,sys,codecs
for root, dirs, files in os.walk("./presets"):
for fn in files:
path = root + '/' + fn
if fn[-1] == '~':
continue
try:
with open(path,'r') as f:
data = f.read()
if data[0] != '\n':
print(path,'no initial newline')
except:
print(path,sys.exc_info()[0])