##// END OF EJS Templates
- Small extension bug fix (irunner would fail to automatically recognize...
- Small extension bug fix (irunner would fail to automatically recognize file extensions).

File last commit:

r503:b114b8cd
r514:0cd1e86c
Show More
check_sources.py
14 lines | 240 B | text/x-python | PythonLexer
from path import path
fs = path('..').walkfiles('*.py')
for f in fs:
errs = ''
cont = f.bytes()
if '\t' in cont:
errs+='t'
if '\r' in cont:
errs+='r'
if errs:
print "%3s" % errs, f