From 61bacad67220e3c577e00de7f3321d10ac03cce8 Mon Sep 17 00:00:00 2001 From: April Date: Mon, 17 Oct 2022 22:54:47 -0700 Subject: [PATCH] Fix python not importing py2lib.bit in Alerts.py --- recordGenerators/Alerts.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/recordGenerators/Alerts.py b/recordGenerators/Alerts.py index c25d625..151aaa8 100644 --- a/recordGenerators/Alerts.py +++ b/recordGenerators/Alerts.py @@ -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()