Skip to content

Commit

Permalink
fix string.format() omission in OpenOS package.lua (#3731)
Browse files Browse the repository at this point in the history
  • Loading branch information
REUSS-dev committed Aug 23, 2024
1 parent ad76e2a commit 49ae4fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ table.insert(searchers, function(module)

library, status = loadfile(path)
if not library then
error("error loading module '%s' from file '%s':\n\t%s", module, path, status)
error(string.format("error loading module '%s' from file '%s':\n\t%s", module, path, status))
end

return library, module
Expand Down

0 comments on commit 49ae4fe

Please sign in to comment.