We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03eb7e5 commit eb97fd4Copy full SHA for eb97fd4
archivebox/parsers/generic_json.py
@@ -17,6 +17,7 @@ def parse_generic_json_export(json_file: IO[str], **_kwargs) -> Iterable[Link]:
17
"""Parse JSON-format bookmarks export files (produced by pinboard.in/export/, or wallabag)"""
18
19
json_file.seek(0)
20
+ next(json_file)
21
links = json.load(json_file)
22
json_date = lambda s: datetime.strptime(s, '%Y-%m-%dT%H:%M:%S%z')
23
0 commit comments