mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 14:11:05 +00:00
smart_unicode instead of unicode
This commit is contained in:
parent
e9504d2e42
commit
dc8829c991
1 changed files with 1 additions and 1 deletions
|
@ -1145,7 +1145,7 @@ class Feed(models.Model):
|
|||
# Don't mangle stories with code, just use new
|
||||
story_content_diff = story_content
|
||||
else:
|
||||
story_content_diff = htmldiff(unicode(original_content), unicode(story_content))
|
||||
story_content_diff = htmldiff(smart_unicode(original_content), smart_unicode(story_content))
|
||||
else:
|
||||
story_content_diff = original_content
|
||||
# logging.debug("\t\tDiff: %s %s %s" % diff.getStats())
|
||||
|
|
Loading…
Add table
Reference in a new issue