From 1b36d5b29c048414a00c8913a42ef0ab99b6e669 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 19 Feb 2019 01:54:09 -0500 Subject: [PATCH] fix pocket timestamps defaulting to now --- archivebox/parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/parse.py b/archivebox/parse.py index 0ab72f13..0ce55128 100644 --- a/archivebox/parse.py +++ b/archivebox/parse.py @@ -172,7 +172,7 @@ def parse_rss_export(rss_file): 'url': url, 'domain': domain(url), 'base_url': base_url(url), - 'timestamp': str(datetime.now().timestamp()), + 'timestamp': str(time.timestamp()), 'tags': '', 'title': title or fetch_page_title(url), 'sources': [rss_file.name],