summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--yaksh/views.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 3759ca2..b2d2a58 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,7 +26,5 @@ after_success:
- coverage combine
- coverage report
-dist: precise
-
addons:
firefox: "46.0"
diff --git a/yaksh/views.py b/yaksh/views.py
index af7951f..ba957db 100644
--- a/yaksh/views.py
+++ b/yaksh/views.py
@@ -424,7 +424,7 @@ def start(request, questionpaper_id=None, attempt_num=None):
if not last_attempt:
attempt_number = 1
else:
- last_attempt.attempt_number + 1
+ attempt_number = last_attempt.attempt_number + 1
context = {
'user': user,
'questionpaper': quest_paper,