Skip to content

Commit 026d697

Browse files
author
Vladimir Kotal
committed
prevent get_command() from emitting errors when searching for ctags
1 parent a9a037c commit 026d697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/src/main/python/indexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def FindCtags(logger):
9191
binary = None
9292
logger.debug("Trying to find ctags binary")
9393
for program in ['universal-ctags', 'ctags']:
94-
executable = get_command(logger, None, program)
94+
executable = get_command(logger, None, program, level=logging.DEBUG)
9595
if executable:
9696
# Verify that this executable is or is Universal Ctags
9797
# by matching the output when run with --version.

0 commit comments

Comments
 (0)