diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-01-03 13:30:46 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-01-03 13:30:46 -0500 |
commit | 525567a3a547a1b68244ce3ac60b37623ece23b4 (patch) | |
tree | 4bff78155fef19413148bab3b1cb596720292522 | |
parent | 56d538593829946977bbe84b9f4f44214ac988f6 (diff) | |
download | lite-xl-plugin-manager-525567a3a547a1b68244ce3ac60b37623ece23b4.tar.gz lite-xl-plugin-manager-525567a3a547a1b68244ce3ac60b37623ece23b4.zip |
Fixed typo.
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua index fcfef99..0539e33 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -1416,7 +1416,7 @@ local function lpm_plugin_list(id) elseif #result.plugins > 0 then if not VERBOSE then print(string.format("%" .. max_id .."s | %10s | %10s | %s", "ID", "Version", "ModVer", "Status")) - print(string.format("%" .. max_id .."s | %10s | %10s | %s", string.rep("-", max_name), "-------", "------", "-----------")) + print(string.format("%" .. max_id .."s | %10s | %10s | %s", string.rep("-", max_id), "-------", "------", "-----------")) end for i, plugin in ipairs(common.sort(result.plugins, function(a,b) return a.id < b.id end)) do if VERBOSE then |