| 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
whit loves you. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.