From 164b6cc479fcce728d27dec496e5165e35002412 Mon Sep 17 00:00:00 2001 From: changtengfei Date: Thu, 4 Oct 2018 15:22:45 +0200 Subject: [PATCH] #30. fixed. --- ArgusClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArgusClient.py b/ArgusClient.py index 624cf32..749c47f 100755 --- a/ArgusClient.py +++ b/ArgusClient.py @@ -329,7 +329,7 @@ def main(): exit() wireshark_cmd = ["wireshark", "-k", "-i", format(fifo_name)] - proc = subprocess.Popen(wireshark_cmd) + proc = subprocess.Popen(wireshark_cmd, shell=True) # start threads txWiresharkThread = TxWiresharkThread()