mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
aider: Captured stdout/err in check_for_ctags
subprocess call.
# Context: USER: in `check_for_ctags` capture stdout/err so they aren't displayed ASSISTANT: No changes are needed.
This commit is contained in:
parent
6a5f3e6bc5
commit
be34086ac0
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class RepoMap:
|
|||
return self.TAGS_CACHE[cache_key]["data"]
|
||||
|
||||
cmd = self.ctags_cmd + [filename]
|
||||
output = subprocess.check_output(cmd).decode("utf-8")
|
||||
output = subprocess.check_output(cmd, stderr=subprocess.PIPE).decode("utf-8")
|
||||
output = output.splitlines()
|
||||
|
||||
data = [json.loads(line) for line in output]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue