Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 22030de2 authored by VIGNET Pierre's avatar VIGNET Pierre
Browse files

[cmd] Fix threading issue

parent 74d29828
No related branches found
No related tags found
No related merge requests found
......@@ -654,7 +654,8 @@ def main():
from threading import Thread
thread = Thread(target=anal)
thread.start()
thread.join()
# Launch associated command
args.func(params)
thread.join()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment