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

Fix :extadd.

A casualty of module loading tomfoolery or similar.
This commit is contained in:
Doug Kearns
2012-06-24 21:43:04 +10:00
parent 281778066c
commit 83cd793af6

View File

@@ -388,7 +388,7 @@ var Addons = Module("addons", {
"Install an extension",
function (args) {
let url = args[0];
let file = io.File(url);
let file = modules.io.File(url);
function install(addonInstall) {
addonInstall.addListener(addonListener);
addonInstall.install();