From d8ef3fe1f52fae93dfaa27591661b7871dd0a179 Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Tue, 19 Sep 2017 18:53:32 +0530 Subject: Fixes Nonetype object has attribute 'encode' error --- yaksh/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'yaksh/views.py') diff --git a/yaksh/views.py b/yaksh/views.py index 3f9f622..e6da2fc 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -488,7 +488,8 @@ def show_question(request, question, paper, error_message=None, notification=Non answers = paper.get_previous_answers(question) if answers: last_attempt = answers[0].answer - context['last_attempt'] = last_attempt.encode('unicode-escape') + if last_attempt: + context['last_attempt'] = last_attempt.encode('unicode-escape') ci = RequestContext(request) return my_render_to_response('yaksh/question.html', context, context_instance=ci) -- cgit