commit 40808c2d534aa5be1b23dd461793e94cf46870cb
parent c0b8006586036fe3b3a80d9f3e951956da1f4fb7
Author: phoebos <ben@bvnf.space>
Date: Fri, 30 Jun 2023 01:42:10 +0100
quotes
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bliss/pkg.lua b/bliss/pkg.lua
@@ -7,7 +7,7 @@ local function read_lines(file)
local f = io.open(file)
if not f then return {} end
for line in f:lines() do
- if #line ~= 0 and string.sub(line, 1, 1) ~= '#' then
+ if #line ~= 0 and string.sub(line, 1, 1) ~= "#" then
table.insert(t, utils.split(line, " "))
end
end