We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3d4be commit a41041dCopy full SHA for a41041d
1 file changed
monitoring/draw_stats_graphs.py
@@ -56,7 +56,7 @@ def update_stats_history(history_file, new_stats_file):
56
history = load(history_file) or []
57
new_stats = load(new_stats_file)
58
if new_stats is None:
59
- raise FileNotFoundError("File with new stats not exists!")
+ raise FileNotFoundError("File with new stats does not exist!")
60
history.append(transform_and_combine_stats(new_stats))
61
with open(history_file, "w") as f:
62
json.dump(history, f, indent=4)
0 commit comments