From 6a48c17a100cbc575e65468e13b3ee781cdf5bdc Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 30 May 2013 10:20:57 +0200 Subject: [PATCH] fix crem_checker --- tools/scripts/crem_checker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/scripts/crem_checker.py b/tools/scripts/crem_checker.py index e66b6803..9b5088a0 100755 --- a/tools/scripts/crem_checker.py +++ b/tools/scripts/crem_checker.py @@ -230,9 +230,10 @@ class CremCheck: def check(self): for dir in self.dir_list: + collection = CremCollection(self.root_dir + dir, self.logger) msg = '************************ ' + collection.dir_name + ' ******************************' self.logger.write_info(collection.dir, msg[:70]) - collection = CremCollection(self.root_dir + dir, self.logger) + xls_list = collection.xls_list() wav_list = collection.wav_list() -- 2.39.5