fix: add %s to notify message of git checkout action (#1812)

This commit is contained in:
Dhruv Manilawala
2022-03-30 20:42:46 +05:30
committed by GitHub
parent cf2d6d3428
commit 4eedf1599e

View File

@@ -478,7 +478,7 @@ actions.git_checkout = function(prompt_bufnr)
local _, ret, stderr = utils.get_os_command_output({ "git", "checkout", selection.value }, cwd) local _, ret, stderr = utils.get_os_command_output({ "git", "checkout", selection.value }, cwd)
if ret == 0 then if ret == 0 then
utils.notify("actions.git_checkout", { utils.notify("actions.git_checkout", {
msg = string.format("Checked out: ", selection.value), msg = string.format("Checked out: %s", selection.value),
level = "INFO", level = "INFO",
}) })
else else