1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 09:32:28 +01:00

Properly quote strings.

This commit is contained in:
Kris Maglione
2009-11-15 02:43:53 -05:00
parent a70f1c2926
commit f0c87aeae5
7 changed files with 17 additions and 17 deletions

View File

@@ -1284,7 +1284,7 @@ const Liberator = Module("liberator", {
liberator.echoerr("E475: Invalid argument: " + arg);
}
catch (e) {
liberator.echoerr("Error opening '" + arg + "': " + e);
liberator.echoerr("Error opening " + arg.quote() + ": " + e);
}
}, {
argCount: "1",