Skip to content

Commit a41041d

Browse files
author
Rustam Sadykov
committed
fix script
1 parent 1b3d4be commit a41041d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

monitoring/draw_stats_graphs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def update_stats_history(history_file, new_stats_file):
5656
history = load(history_file) or []
5757
new_stats = load(new_stats_file)
5858
if new_stats is None:
59-
raise FileNotFoundError("File with new stats not exists!")
59+
raise FileNotFoundError("File with new stats does not exist!")
6060
history.append(transform_and_combine_stats(new_stats))
6161
with open(history_file, "w") as f:
6262
json.dump(history, f, indent=4)

0 commit comments

Comments
 (0)