From e608ccaab380044f49dde5656e0226f748bdae81 Mon Sep 17 00:00:00 2001 From: Kyle Mahan Date: Tue, 10 May 2016 11:10:39 -0700 Subject: [PATCH] content comparsion should take into account dt-deleted --- woodwind/tasks.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/woodwind/tasks.py b/woodwind/tasks.py index 41d3a7d..c7be766 100644 --- a/woodwind/tasks.py +++ b/woodwind/tasks.py @@ -350,6 +350,9 @@ def is_content_equal(e1, e2): and e1.author_url == e2.author_url and e1.author_photo == e2.author_photo and e1.properties == e2.properties + and e1.published == e2.published + and e1.updated == e2.updated + and e1.deleted == e2.deleted )