##// END OF EJS Templates
Add the igrid help files to the list of data files...
Add the igrid help files to the list of data files to be installed alongside igrid.

File last commit:

r503:b114b8cd
r545:e1046222
Show More
check_sources.py
14 lines | 240 B | text/x-python | PythonLexer
vivainio
merge all from 0.7.3 branch to trunk
r503 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
vivainio
check_sources does some sanity checks to IPython source files
r498