Skip to content

Commit 4d04747

Browse files
committed
Fix a variable name typo
1 parent fcdf670 commit 4d04747

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
@@ -18,7 +18,7 @@ def fzf_history(debugger, cmdstr, ctx, result, _):
1818
if sys.platform != "darwin":
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.
21-
fzf_command = ("fzf", "--no-sort", f"--query={query}")
21+
fzf_command = ("fzf", "--no-sort", f"--query={cmdstr}")
2222
subprocess.run(fzf_command, input=history, text=True)
2323
return
2424

0 commit comments

Comments
 (0)