From 3c1e9107993e833300fa0ec96c397b51afa8e3be Mon Sep 17 00:00:00 2001 From: Pavel Korshunov <pavel.korshunov@idiap.ch> Date: Mon, 6 Feb 2017 15:20:28 +0100 Subject: [PATCH] Correctly determine uses_dense_probe_file when scores only --- bob/bio/base/database/filelist/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/bio/base/database/filelist/query.py b/bob/bio/base/database/filelist/query.py index 09ae85f8..2447c71a 100644 --- a/bob/bio/base/database/filelist/query.py +++ b/bob/bio/base/database/filelist/query.py @@ -289,7 +289,7 @@ class FileListBioDatabase(ZTBioDatabase): scores = True for group in self.groups(protocol, add_world=False): probes = probes and os.path.exists(self._get_list_file(group, type='for_probes', protocol=protocol)) - scores = probes and os.path.exists(self._get_list_file(group, type='for_scores', protocol=protocol)) + scores = scores and os.path.exists(self._get_list_file(group, type='for_scores', protocol=protocol)) # decide, which score files are available if probes and not scores: return True -- GitLab