From c90ce4c1e50cf0f5a41387f0b4c573593d4abf73 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu>
Date: Wed, 8 Feb 2017 10:23:34 +0100
Subject: [PATCH] remove legacy argument

---
 tests/test_postfix.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_postfix.py b/tests/test_postfix.py
index 15afa1e2..7cdebf28 100755
--- a/tests/test_postfix.py
+++ b/tests/test_postfix.py
@@ -13,7 +13,7 @@ if not os.path.exists('/etc/postfix'):
     sys.exit(1)
 else:
     # check that postfix listens the port 25 correctly
-    status, out = subprocess.getstatusoutput('netstat -pant | grep master | grep 127.0.0.1:25', shell=True)
+    status, out = subprocess.getstatusoutput('netstat -pant | grep master | grep 127.0.0.1:25')
     if status != 0:
         print('The port 25 is not listened by any process.')
         sys.exit(1)
-- 
GitLab