MANSPIDER
MANSPIDER copied to clipboard
Improper module import of .lib
Line 8 of manspider.py
appears to be referencing lib
improperly. Currently it is referenced like so:
from .lib import *
The issue can be resolved by changing the affected import line to the following (aka removing the leading period):
from lib import *