Hi i notice that somebody had the same problem, so here is the solution
change the following lines at plugins/generic/takeover.py around line number
28, from
.....
import re
from lib.core.common import getDirectories
.....
to
....
import re
from lib.core.agent import agent
from lib.core.common import fileToStr
from lib.core.common import getDirectories
.....
That will be just adding the missing function definitions.
Regards,
Dinos
|