Skip to content

Commit eb97fd4

Browse files
committed
Skip first line of the "JSON" file
ArchiveBox moves the file to parse to the sources directory and adds the original filename at the top, making the file invalid.
1 parent 03eb7e5 commit eb97fd4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

archivebox/parsers/generic_json.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def parse_generic_json_export(json_file: IO[str], **_kwargs) -> Iterable[Link]:
1717
"""Parse JSON-format bookmarks export files (produced by pinboard.in/export/, or wallabag)"""
1818

1919
json_file.seek(0)
20+
next(json_file)
2021
links = json.load(json_file)
2122
json_date = lambda s: datetime.strptime(s, '%Y-%m-%dT%H:%M:%S%z')
2223

0 commit comments

Comments
 (0)