Fix a bug with minimum number of photos constraint

This commit is contained in:
Lucas Verney 2017-11-03 17:41:16 +01:00
parent 8b99fff79d
commit 2d8dfcb7c7
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ def refine_with_details_criteria(flats_list, constraint):
for i, flat in enumerate(flats_list):
# Check number of pictures
has_enough_photos = tools.is_within_interval(
flat.get('photos', []),
len(flat.get('photos', [])),
constraint['minimum_nb_photos'],
None
)