1
0
Fork 0
mirror of synced 2024-06-17 18:04:33 +12:00

docs: fix simple typo, timstamp -> timestamp

There is a small typo in archivebox/index/__init__.py.

Should read `timestamp` rather than `timstamp`.
This commit is contained in:
Tim Gates 2020-12-26 11:31:03 +11:00 committed by Nick Sweeting
parent c322bc59b6
commit 7bf63d91ff

View file

@ -124,7 +124,7 @@ def validate_links(links: Iterable[Link]) -> List[Link]:
timer = TimedProgress(TIMEOUT * 4)
try:
links = archivable_links(links) # remove chrome://, about:, mailto: etc.
links = sorted_links(links) # deterministically sort the links based on timstamp, url
links = sorted_links(links) # deterministically sort the links based on timestamp, url
links = fix_duplicate_links(links) # merge/dedupe duplicate timestamps & urls
finally:
timer.end()