Skip to content

Commit fcdf670

Browse files
committed
Fix basic fzf invocation
1 parent eff3367 commit fcdf670

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/examples/python/fzf_history.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def fzf_history(debugger, cmdstr, ctx, result, _):
1919
# The ability to integrate fzf's result into lldb uses copy and paste.
2020
# In absense of copy and paste, do the basics and forgo features.
2121
fzf_command = ("fzf", "--no-sort", f"--query={query}")
22-
subprocess.run(fzf_command, input=history)
22+
subprocess.run(fzf_command, input=history, text=True)
2323
return
2424

2525
# Capture the current pasteboard contents to restore after overwriting.

0 commit comments

Comments
 (0)