]> git.lyx.org Git - lyx.git/blobdiff - src/support/os.C
hopefully fix tex2lyx linking.
[lyx.git] / src / support / os.C
index 9a82e62784b69f6627270d703c56686473f87c43..7d679dea43570abe374b76c78e411a93b61b0695 100644 (file)
 #else
 #include "os_unix.C"
 #endif
+
+namespace lyx {
+namespace support {
+namespace os {
+
+std::string const python()
+{
+       // Use the -tt switch so that mixed tab/whitespace indentation is
+       // an error
+       static std::string const command("python -tt");
+       return command;
+}
+
+}
+}
+}