##// END OF EJS Templates
Added a warning message, if you use MATPLOTLIB you will have to deactivate threading or the window will not be shown.
Added a warning message, if you use MATPLOTLIB you will have to deactivate threading or the window will not be shown.

File last commit:

r964:0a2f2117
r1807:6f845f87
Show More
check_sources.py
14 lines | 257 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