From 1903c0b14f49fca9684bd546c042ec51031b6824 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Matos?= Date: Mon, 3 Jun 2019 07:31:05 +0100 Subject: [PATCH] Make verbose switch consistent. Someday we should probably unify these two switches. Because the debug switch is verbose and the verbose switch is mostly used for debuging. --- lib/scripts/lyxpreview2bitmap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/scripts/lyxpreview2bitmap.py b/lib/scripts/lyxpreview2bitmap.py index 236010fbc3..eee000deea 100755 --- a/lib/scripts/lyxpreview2bitmap.py +++ b/lib/scripts/lyxpreview2bitmap.py @@ -378,8 +378,8 @@ def main(argv): if len(dir) != 0: os.chdir(dir) - if lyxpreview_tools.debug: - f_out = open('debug.txt', 'a') + if lyxpreview_tools.verbose: + f_out = open('verbose.txt', 'a') sys.stdout = f_out sys.stderr = f_out -- 2.39.5