1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 19:32:27 +01:00

added missing \n to dump()

This commit is contained in:
Martin Stubenschrott
2008-09-10 20:31:16 +00:00
parent 0bb59f6c5c
commit 1c219ea65c

View File

@@ -37,7 +37,7 @@ const liberator = (function () //{{{
function loadModule(name, func)
{
liberator.log("Loading module " + name + "...", 0);
liberator.dump("Loading module " + name + "...");
liberator.dump("Loading module " + name + "...\n");
liberator[name] = func();
}