From 67197286c121a30873a3ed954f2039c53e83e134 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu>
Date: Thu, 15 Jun 2017 10:47:22 +0200
Subject: [PATCH] Fixed ms users list for tests.

---
 tester.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tester.py b/tester.py
index 0bc0c6cd..9fa611ab 100755
--- a/tester.py
+++ b/tester.py
@@ -165,7 +165,7 @@ class Tester():
         # Get MS instances
         ms_users = list()
         for user in os.listdir('/home'):
-            if os.path.exists('/home/%s/msinstance' % user) and user == msuser:
+            if os.path.exists('/home/%s/msinstance' % user) and (not msuser or user == msuser):
                 ms_users.append(user)
         # Get MediaServer tests
         if ms_users:
-- 
GitLab