diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-11 15:29:50 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-11 15:29:50 +0800 |
commit | e695b4b3c33c6d7c42f0ff35963bbdfc286b0f02 (patch) | |
tree | a65d0f0e92466fb275987fbbffa3110cb57dd879 /app | |
parent | 352ebbef552b6246bf5d6d59ca8a7b470eae9717 (diff) |
main.py: fix typo.
Diffstat (limited to 'app')
-rw-r--r-- | app/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.py b/app/main.py index 9fd5bfe..3556d83 100644 --- a/app/main.py +++ b/app/main.py @@ -109,7 +109,7 @@ def get_today_article(user_word_list, articleID): s += '<p><b>%s</b></p>' % (get_question_part(d['question']))
s = s.replace('\n', '<br/>')
s += '%s' % (get_answer_part(d['question']))
- session['articleID'] = d['artcile_id']
+ session['articleID'] = d['article_id']
return s
|