Skip to content

Commit aae81f0

Browse files
Formatted and --dev
CREATE THE LOG_REPO AFTER GETTING DeBUG AND OTHER LOG
1 parent 0fe1b6c commit aae81f0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CODE/Logicytics.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ def special_run(file_path: str):
168168

169169
# Check weather to use threading or not, as well as execute code
170170
if action == "threaded":
171+
171172
def threaded_execution(execution_list_thread, index_thread):
172173
try:
173174
thread_log = Execute().file(execution_list_thread, index_thread)
@@ -178,6 +179,7 @@ def threaded_execution(execution_list_thread, index_thread):
178179
log.error(f"Error in thread: {err}")
179180
except Exception as err:
180181
log.error(f"Error in thread: {err}")
182+
181183
threads = []
182184
for index, file in enumerate(execution_list):
183185
thread = threading.Thread(

CODE/__lib_class.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,9 @@ def sys_internal_zip():
376376

377377
elif ignore_file:
378378
if __name__ == "__main__":
379-
Log(debug=DEBUG).debug("Found .sys.ignore file, skipping SysInternal_Suite zip extraction")
379+
Log(debug=DEBUG).debug(
380+
"Found .sys.ignore file, skipping SysInternal_Suite zip extraction"
381+
)
380382

381383
except Exception as err:
382384
exit(f"Failed to unzip SysInternal_Suite: {err}")

CODE/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"WEBHOOK URL": "IGNORE ME FOR NOW",
33
"ipgeolocation.io API KEY": "OPTIONAL - ADD A KEY",
44
"DEBUG": false,
5-
"VERSION": "2.3.0",
5+
"VERSION": "2.3.1",
66
"CURRENT_FILES": [
77
"browser_miner.ps1",
88
"driverquery+sysinfo.py",

0 commit comments

Comments
 (0)