Skip to content

Commit

Permalink
#2428 Do not check if MET_PYTHON_EXE is the same as the MET_PYTHON_BI…
Browse files Browse the repository at this point in the history
…N_EXE
  • Loading branch information
Howard Soh committed Feb 22, 2023
1 parent d7dabde commit 4b6e032
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/libcode/vx_pointdata_python/python_pointdata.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ bool status = false;

if ( user_ppath == 0 ) user_ppath = getenv(user_python_path_env);

if ( user_ppath != 0 && 0 != strcmp(user_ppath, MET_PYTHON_BIN_EXE) ) {
if ( user_ppath != 0 ) {
// do_tmp_nc = true;

status = tmp_nc_point_obs(script_name, script_argc, script_argv,
Expand Down Expand Up @@ -289,11 +289,6 @@ mlog << Debug(3) << "Running MET compile time python instance ("
<< MET_PYTHON_BIN_EXE << ") to run user's python script ("
<< script_name << ").\n";

if ( user_ppath != 0) {
mlog << Debug(3) << "The same python instance with the user-specified python"
<< " (MET_PYTHON_EXE=" << user_ppath << ").\n";
}

//
// set the arguments
//
Expand Down

0 comments on commit 4b6e032

Please sign in to comment.