mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix bug in replacement of "$$s/" in converter commands, introduced in 8b66f9ce
.
This commit is contained in:
parent
dea5ba16de
commit
8b5dc3c662
@ -229,7 +229,7 @@ static string const move_file(string const & from_file, string const & to_file)
|
||||
static void build_conversion_command(string const & command, ostream & script)
|
||||
{
|
||||
// Store in the python script
|
||||
script << "\nif os.system(r'" << command << "') != 0:\n";
|
||||
script << "\nif os.system(r'" << commandPrep(command) << "') != 0:\n";
|
||||
|
||||
// Test that this was successful. If not, remove
|
||||
// ${outfile} and exit the python script
|
||||
|
Loading…
Reference in New Issue
Block a user