##// END OF EJS Templates
Small fix to '?', more doctest-compliant profile.
Small fix to '?', more doctest-compliant profile.

File last commit:

r704:ee1f755f
r762:35c07ebe
Show More
ipy_kitcfg.py
16 lines | 315 B | text/x-python | PythonLexer
#import IPython.ipapi
#ip = IPython.ipapi.get()
import os
def main():
root = os.environ.get('IPYKITROOT', None)
if not root:
print "Can't configure ipykit, IPYKITROOT should be set."
return
os.environ["PATH"] = os.environ["PATH"] + ";" + root + "\\bin;"
main()