Skip to content

Commit a9efe10

Browse files
authored
[Benchmarks] Fix timestamp (#19672)
1 parent a97650c commit a9efe10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devops/scripts/benchmarks/history.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def save(self, save_name, results: list[Result]):
209209
timestamp = options.timestamp_override
210210
else:
211211
timestamp = (
212-
datetime.now(tz=timezone.utc).strftime(self.TIMESTAMP_FORMAT)
212+
datetime.now(tz=timezone.utc).strftime(options.TIMESTAMP_FORMAT)
213213
if options.timestamp_override is None
214214
else options.timestamp_override
215215
)

0 commit comments

Comments
 (0)