Skip to content

Commit

Permalink
Update load.cpp to fix mdb converter (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: David P. Chassin <dchassin@slac.stanford.edu>
Signed-off-by: David P. Chassin <david.chassin@me.com>
  • Loading branch information
David P. Chassin authored and dchassin committed Oct 16, 2023
1 parent 88fd46e commit 74f6091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/load.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8577,7 +8577,7 @@ bool GldLoader::load_import(const char *from, char *to, int len)
}
IN_MYCONTEXT output_verbose("changing output to '%s'", to);
}
int rc = my_instance->subcommand("%s %s -i %s -o %s %s",(const char*)global_pythonexec,converter_path,from,to,unquoted);
int rc = my_instance->subcommand("%s %s -i '%s' -o '%s' %s",(const char*)global_pythonexec,converter_path,from,to,unquoted);
if ( rc != 0 )
{
output_error("%s: return code %d",converter_path,rc);
Expand Down

0 comments on commit 74f6091

Please sign in to comment.