]> git.lyx.org Git - features.git/commitdiff
Add warning message if we do no conversion.
authorRichard Heck <rgheck@lyx.org>
Sun, 1 Nov 2015 21:32:52 +0000 (16:32 -0500)
committerRichard Heck <rgheck@lyx.org>
Sun, 1 Nov 2015 21:32:52 +0000 (16:32 -0500)
lib/lyx2lyx/LyX.py

index 700a69960d4ba4b4044420ce96220913e9f9daf9..5346eec2541c01fe23813951a72d17f1ab40db73 100644 (file)
@@ -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()