From 68d1ad0246f7dfd3bb1379d238cad68c450a3985 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicolas=20Zingil=C3=A9?= Date: Tue, 23 Sep 2014 10:55:20 +0200 Subject: [PATCH] fix list sub function MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I87642da1b32c9c89362fceed9df4c591a5763dd7 Signed-off-by: Nicolas Zingilé --- src/common-suite-launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common-suite-launcher b/src/common-suite-launcher index 87548ac..388363b 100755 --- a/src/common-suite-launcher +++ b/src/common-suite-launcher @@ -180,8 +180,8 @@ def list_suites(args): for profile in profiles: print '\n##-- List of ' + profile + ' test suites' suitepath = os.path.join(GLOBALSUITEPATH, profile) - suitelist = os.listdir(suitepath) try: + suitelist = os.listdir(suitepath) if not suitelist: print '-' else: -- 2.7.4