When doing input file verification the exit code is always 1. #335

After doing verification of the input file we return the exit code
of the python processor.
This commit is contained in:
Alex Lin 2017-01-11 17:40:05 -06:00
parent 9f01209316
commit 4b28951c1c

View File

@ -131,7 +131,7 @@ int Trick::IPPython::init() {
}
if ( verify_input ) {
exec_terminate_with_return(1 , __FILE__ , __LINE__ , "Input file verification complete\n" ) ;
exec_terminate_with_return(ret , __FILE__ , __LINE__ , "Input file verification complete\n" ) ;
}
fclose(input_fp) ;