From 7b75a3d406b05612e622d6935d87fadbecbf2bd9 Mon Sep 17 00:00:00 2001 From: thomas-girard Date: Tue, 3 Oct 2023 11:09:32 +0200 Subject: [PATCH] fix: small bug in evolution --- ad_miner/sources/modules/main_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ad_miner/sources/modules/main_page.py b/ad_miner/sources/modules/main_page.py index e46fb481..b390cf55 100644 --- a/ad_miner/sources/modules/main_page.py +++ b/ad_miner/sources/modules/main_page.py @@ -51,7 +51,7 @@ def get_raw_other_data(arguments): try: raw_other_list_data = [] for file_name in os.listdir(arguments.evolution): - with open(arguments.evolution + file_name, "r") as f: + with open(arguments.evolution + "/" + file_name, "r") as f: raw_other_list_data.append(json.load(f)) return raw_other_list_data except Exception as e: