summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lbu-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lbu-model.lua b/lbu-model.lua
index 19217e1..204d958 100644
--- a/lbu-model.lua
+++ b/lbu-model.lua
@@ -28,7 +28,7 @@ local function getLbuStatus()
for line in f:lines() do
if (string.match(line, "^Include files")) then break end
if (string.match(line, "^Exclude files")) then break end
- local status, name = string.match(line, "^(%S+)%s+(.+)$")
+ local status, name = string.match(line, "^(%S)%s+(.+)$")
if (status) and (name) then
ret[string.gsub('/' .. name, "/+", "/")] = status
end