summaryrefslogtreecommitdiffstats
path: root/secfixes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'secfixes.lua')
-rw-r--r--secfixes.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/secfixes.lua b/secfixes.lua
index fa2aab2..a25e9c2 100644
--- a/secfixes.lua
+++ b/secfixes.lua
@@ -52,7 +52,7 @@ function verify_yaml(file)
assert(type(p.pkg.secfixes) == "table", file..": "..p.pkg.name..": secfixes is not a table")
for k,v in pairs(p.pkg.secfixes) do
assert(type(k) == "string", file..": "..p.pkg.name..": not a string: "..tostring(k))
- assert(string.match(k, "^[0-9]+"))
+ assert(string.match(k, "^[0-9]+"), p.pkg.name..": "..tostring(k))
assert(type(v) == "table", file..": "..p.pkg.name..": "..k..": not a table")
end
end