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

This commit is contained in:
Dhruv Manilawala
2022-03-30 17:12:46 +02:00
committed by GitHub
parent cf2d6d3428
commit 4eedf1599e
+1 -1
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)
if ret == 0 then
utils.notify("actions.git_checkout", {
msg = string.format("Checked out: ", selection.value),
msg = string.format("Checked out: %s", selection.value),
level = "INFO",
})
else