Skip to content

Commit

Permalink
🚚 Fix the build (#5489)
Browse files Browse the repository at this point in the history
  • Loading branch information
rix0rrr committed Apr 30, 2024
1 parent 75cebef commit d38300e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/yaml_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def load(self):
yaml_ts = self._file_timestamp(self.filename)
pickle_ts = self._file_timestamp(self.pickle_filename)

if pickle_ts and pickle_ts > yaml_ts:
if pickle_ts and yaml_ts and pickle_ts > yaml_ts:
# Pickle file is newer than the YAML, just read that
return self.load_pickle()

Expand Down

0 comments on commit d38300e

Please sign in to comment.