Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

this two lines are wrong:

os.environ['PATH'] +=PSSE_PATH + ';'
os.environ['PATH'] += File_Path + ';'

replace that two lines with:

os.environ['PATH'] += ';' + PSSE_PATH
os.environ['PATH'] += ';' + File_Path