1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-03 19:29:32 +00:00
8bitworkshop/tools/checkpresets.py
2018-11-22 14:11:56 -05:00

17 lines
396 B
Python

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]))