Skip to content
Snippets Groups Projects
Commit 20fc2074 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

test_mail: simplify apt call

parent 86f80b77
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ import imp ...@@ -14,7 +14,7 @@ import imp
try: try:
import spf import spf
except ImportError: except ImportError:
status, output = subprocess.getstatusoutput('apt-get -qq -y install python3-spf') subprocess.call(['apt-get', '-qq', '-y', 'install', 'python3-spf'])
import spf import spf
YELLOW = '\033[93m' YELLOW = '\033[93m'
......
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