Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
Remove Response status msg
Browse files Browse the repository at this point in the history
  • Loading branch information
knassar702 committed Oct 31, 2021
1 parent 2fc53dc commit a0eb8a1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/libs/all/module_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,10 @@ def run(self, opts: dict, http: Http):
mres.append(executor.submit(module.main, opt, http))

# # When the scan is completed
# for future in concurrent.futures.as_completed(mres):
# res = future.result()
# if res:
for future in concurrent.futures.as_completed(mres):
res = future.result()
if res:
print(res)
# if res[0] == 'alert':
# self.msg.Alert(res[1])
# else:
Expand Down

0 comments on commit a0eb8a1

Please sign in to comment.