diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-01-25 01:23:12 +0100 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-01-25 01:23:12 +0100 |
| commit | 46558178f7c087a99fcbebaf778e2486d6652dc4 (patch) | |
| tree | f0837245d0f3826c1b3cb5c1edd2283a43e62988 | |
| parent | f7a2b95d2f2c3183355718e3a3ee43ea1f6f207e (diff) | |
Fix syntax error
| -rw-r--r-- | newsdiff/core/parsers/haaretz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newsdiff/core/parsers/haaretz.py b/newsdiff/core/parsers/haaretz.py index f76a01e..1b6747b 100644 --- a/newsdiff/core/parsers/haaretz.py +++ b/newsdiff/core/parsers/haaretz.py @@ -46,7 +46,7 @@ class HaaretzParser(HtmlSoupParser): existing_article.subtitle = subtitle changed = True if article_text != existing_article.text: - existing_article.text = text + existing_article.text = article_text changed = True if changed: existing_article.save() |
