1
0
Fork 0

added derived file

This commit is contained in:
Jan Steemann 2014-05-10 00:46:47 +02:00
parent 548a79ac4d
commit bb25e5cb72
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@
// TODO: remove this in next release
exports.definePeriodic = function (offset, period, module, funcname) {
require("console").warn("definePeriodic() is deprecated. please use executeTask() instead");
var command = "require('" + module + "')." + funcname + "();"
var command = "require('" + module + "')." + funcname + "();";
exports.executeTask({ offset: offset, period: period, command: command });
};
}