From 95c34cc714d39e09b86893e4755136a687981142 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Sun, 6 Sep 2009 09:38:11 +0000 Subject: [PATCH] * configure.py: remove debug code. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31305 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/configure.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/configure.py b/lib/configure.py index acd4881219..0dde2bd0c7 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -292,12 +292,10 @@ def checkViewer(description, progs, rc_entry = [], path = []): alt_rc_entry = [] for idx in range(len(progs)): if len(rc_entry) == 1: - logger.info("rc_entry: " + rc_entry[0]) rcs = rc_entry[0].split('\n') alt = addViewerAlternatives(rcs) alt_rc_entry.insert(0, alt) elif len(rc_entry) > 1: - logger.info("rc_entry: " + rc_entry[idx]) rcs = rc_entry[idx].split('\n') alt = addViewerAlternatives(rcs) alt_rc_entry.insert(idx, alt) @@ -312,12 +310,10 @@ def checkEditor(description, progs, rc_entry = [], path = []): alt_rc_entry = [] for idx in range(len(progs)): if len(rc_entry) == 1: - logger.info("rc_entry: " + rc_entry[0]) rcs = rc_entry[0].split('\n') alt = addEditorAlternatives(rcs) alt_rc_entry.insert(0, alt) elif len(rc_entry) > 1: - logger.info("rc_entry: " + rc_entry[idx]) rcs = rc_entry[idx].split('\n') alt = addEditorAlternatives(rcs) alt_rc_entry.insert(idx, alt) @@ -332,12 +328,10 @@ def checkViewerNoRC(description, progs, rc_entry = [], path = []): alt_rc_entry = [] for idx in range(len(progs)): if len(rc_entry) == 1: - logger.info("rc_entry: " + rc_entry[0]) rcs = rc_entry[0].split('\n') alt = addViewerAlternatives(rcs) alt_rc_entry.insert(0, alt) elif len(rc_entry) > 1: - logger.info("rc_entry: " + rc_entry[idx]) rcs = rc_entry[idx].split('\n') alt = addViewerAlternatives(rcs) alt_rc_entry.insert(idx, alt) @@ -353,12 +347,10 @@ def checkEditorNoRC(description, progs, rc_entry = [], path = []): alt_rc_entry = [] for idx in range(len(progs)): if len(rc_entry) == 1: - logger.info("rc_entry: " + rc_entry[0]) rcs = rc_entry[0].split('\n') alt = addEditorAlternatives(rcs) alt_rc_entry.insert(0, alt) elif len(rc_entry) > 1: - logger.info("rc_entry: " + rc_entry[idx]) rcs = rc_entry[idx].split('\n') alt = addEditorAlternatives(rcs) alt_rc_entry.insert(idx, alt) -- 2.39.2