content comparsion should take into account dt-deleted

This commit is contained in:
Kyle Mahan 2016-05-10 11:10:39 -07:00
parent 81af42f1a2
commit e608ccaab3

View file

@ -350,6 +350,9 @@ def is_content_equal(e1, e2):
and e1.author_url == e2.author_url and e1.author_url == e2.author_url
and e1.author_photo == e2.author_photo and e1.author_photo == e2.author_photo
and e1.properties == e2.properties and e1.properties == e2.properties
and e1.published == e2.published
and e1.updated == e2.updated
and e1.deleted == e2.deleted
) )