Fix python not importing py2lib.bit in Alerts.py

This commit is contained in:
April 2022-10-17 22:54:47 -07:00
parent da0f58390c
commit 61bacad672
No known key found for this signature in database
GPG Key ID: 17A9A017FAA4DE5E

View File

@ -9,7 +9,11 @@ import xml.dom.minidom
import shutil
import gzip
import logging,coloredlogs
import py2Lib.bit as bit
import sys
sys.path.append("./py2lib")
import bit
l = logging.getLogger(__name__)
coloredlogs.install()