Commit 51f3b719 by Vik Paruchuri

roll back changes to common

parent d76241e6
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
# class used to store graded responses to CAPA questions # class used to store graded responses to CAPA questions
# #
# Used by responsetypes and capa_problem # Used by responsetypes and capa_problem
from statsd import statsd
class CorrectMap(object): class CorrectMap(object):
""" """
...@@ -54,11 +53,6 @@ class CorrectMap(object): ...@@ -54,11 +53,6 @@ class CorrectMap(object):
'queuestate': queuestate, 'queuestate': queuestate,
} }
if correctness=="correct":
statsd.increment("lms.user.correct_answer")
else:
statsd.increment("lms.user.incorrect_answer")
def __repr__(self): def __repr__(self):
return repr(self.cmap) return repr(self.cmap)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment