diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-01-26 18:14:57 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-01-26 18:14:57 +0200 |
| commit | 381ce73145d42295bf148a576b1b685b92635c32 (patch) | |
| tree | fa544eab9addf0fcceecd3ca2c6572819d4c946b | |
| parent | 46558178f7c087a99fcbebaf778e2486d6652dc4 (diff) | |
Fix syntax error in ynet parser
| -rw-r--r-- | newsdiff/core/parsers/ynet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newsdiff/core/parsers/ynet.py b/newsdiff/core/parsers/ynet.py index 1e533c9..767594e 100644 --- a/newsdiff/core/parsers/ynet.py +++ b/newsdiff/core/parsers/ynet.py @@ -46,7 +46,7 @@ class YnetParser(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() |
