commit 857c099e03eaeb0fe63ecec98ba541ac6db31036
Author: Richard Heck <[email protected]>
Date: Sun Jan 15 11:35:50 2017 -0500
Remove very old debug code.
---
lib/lyx2lyx/lyx_2_0.py | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py
index 243cbb8..53ad3ea 100644
--- a/lib/lyx2lyx/lyx_2_0.py
+++ b/lib/lyx2lyx/lyx_2_0.py
@@ -2173,7 +2173,6 @@ def revert_passthru(document):
# but first let's check and make sure there is no content between the
# two layouts. i'm not sure if that can happen or not.
for l in range(end + 1, next):
- document.warning("c'" + document.body[l] + "'")
if document.body[l] != "":
document.warning("Found content between adjacent " + lay + "
layouts!")
break
@@ -2183,7 +2182,6 @@ def revert_passthru(document):
break
empty = True
for l in range(next + 1, nextend):
- document.warning("e'" + document.body[l] + "'")
if document.body[l] != "":
empty = False
break