Fixing timestamp on starred story hashes.

This commit is contained in:
Samuel Clay 2013-07-23 11:35:33 -07:00
parent a54f2a2bd5
commit 292b8e7b36

View file

@ -791,7 +791,7 @@ def starred_story_hashes(request):
).only('story_hash', 'starred_date').order_by('-starred_date')
if include_timestamps:
story_hashes = [(s.story_hash, s.starred_date.strftime("%f")) for s in mstories]
story_hashes = [(s.story_hash, s.starred_date.strftime("%s")) for s in mstories]
else:
story_hashes = [s.story_hash for s in mstories]