Skip to content
Snippets Groups Projects
Commit 9ea43857 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Fix Wowza test when Wowza is not installed

parent 00e34f69
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ def check_installed_and_enabled() -> bool:
cmd = 'dpkg --get-selections "wowza*"'
out = subprocess.getoutput(cmd).strip()
state = out.split()[-1]
state = out.split('\t')[-1]
if state != 'install':
lg.info('not installed, skip test')
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment