X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fconverter.C;h=d55633b0d30077970bab2c1cd945a0ba5495a20a;hb=f5fbef2d8f3fde203fc04626856c2578ce1d3103;hp=750a03936bc4ad74e10c85560b3a8f2616948591;hpb=8c93f63b48a1b15d4f3e163b7305213f2f73879e;p=lyx.git diff --git a/src/converter.C b/src/converter.C index 750a03936b..d55633b0d3 100644 --- a/src/converter.C +++ b/src/converter.C @@ -298,15 +298,15 @@ bool Converters::convert(Buffer const * buffer, getExtension(from_file) : formats.extension(from_format); string const command = - "sh " + - quoteName(libFileSearch("scripts", "convertDefault.sh")) + + "python " + + quoteName(libFileSearch("scripts", "convertDefault.py")) + ' ' + quoteName(from_ext + ':' + from_file) + ' ' + quoteName(to_ext + ':' + to_file); lyxerr[Debug::FILES] << "No converter defined! " - "I use convertDefault.sh:\n\t" + "I use convertDefault.py:\n\t" << command << endl; Systemcall one; one.startscript(Systemcall::Wait, command);