MANSPIDER icon indicating copy to clipboard operation
MANSPIDER copied to clipboard

Improper module import of .lib

Open defarbs opened this issue 2 years ago • 0 comments

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 *

defarbs avatar Aug 22 '22 20:08 defarbs