remove dead assignment IPPython.cpp

This commit is contained in:
Scott Fennell 2018-10-01 13:55:02 -05:00
parent 424043b146
commit 0b2218e449

View File

@ -131,7 +131,7 @@ int Trick::IPPython::init() {
/* Read and parse the input file. */ /* Read and parse the input file. */
if ( verify_input ) { if ( verify_input ) {
ret = PyRun_SimpleString("sys.settrace(trick.traceit)") ; PyRun_SimpleString("sys.settrace(trick.traceit)") ;
} }
if ( (ret = PyRun_SimpleFile(input_fp, input_file.c_str())) != 0 ) { if ( (ret = PyRun_SimpleFile(input_fp, input_file.c_str())) != 0 ) {