Skip to content

Commit

Permalink
fix: small bug in evolution
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-girard committed Oct 3, 2023
1 parent 1caf7b2 commit 7b75a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ad_miner/sources/modules/main_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7b75a3d

Please sign in to comment.