@cowboysdude said in MMM-Snow Activation at Month:
var D = new Date();
var month = D.getmonth;
If (month === “11”) {
magic happens here…
}
ok i found the Problem
not var month = D.getmonth; but var month = D.getmonth();
@cowboysdude said in MMM-Snow Activation at Month:
var D = new Date();
var month = D.getmonth;
If (month === “11”) {
magic happens here…
}
ok i found the Problem
not var month = D.getmonth; but var month = D.getmonth();
I found the issue.
Change in capture.py
from config import ToolsConfig -> from .config import ToolsConfig