##// END OF EJS Templates
Add searching of .py files to find_cmd so Twisted's trial runner is found....
Add searching of .py files to find_cmd so Twisted's trial runner is found. Fix necessary for the test suite to run under win32.

File last commit:

r1637:3d4a1f01
r2110:8a76d7d6
Show More
check_sources.py
15 lines | 258 B | text/x-python | PythonLexer
from IPython.external.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