commit 4c16c61579d37f00c252ace8cf79d0573ca626bb
Author: Richard Heck <[email protected]>
Date:   Sun Nov 1 16:32:52 2015 -0500

    Add warning message if we do no conversion.

diff --git a/lib/lyx2lyx/LyX.py b/lib/lyx2lyx/LyX.py
index 700a699..5346eec 100644
--- a/lib/lyx2lyx/LyX.py
+++ b/lib/lyx2lyx/LyX.py
@@ -554,6 +554,8 @@ class LyX_base:
     def convert(self):
         "Convert from current (self.format) to self.end_format."
         if self.format == self.end_format:
+            self.warning("No conversion needed: Target format %s "
+                "same as current format!" % self.format, default_debug__)
             return
 
         mode, conversion_chain = self.chain()

Reply via email to