Skip to content

Commit

Permalink
Merge pull request #130 from MightyPirates/master-MC1.7.10
Browse files Browse the repository at this point in the history
fix string.format() omission in OpenOS package.lua (MightyPirates#3731)
  • Loading branch information
Dream-Master authored Aug 24, 2024
2 parents ad31f5b + 49ae4fe commit 8bcd75a
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 8bcd75a

Please sign in to comment.