##// END OF EJS Templates
Completely fixed the ipython_win_post_install.py script. It now ...
Completely fixed the ipython_win_post_install.py script. It now creates .bat an .py files for all the script and also creates shortcuts in the Start Menu for some of them. All seems to work fine!

File last commit:

r964:0a2f2117
r1612:dd6582d6
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