Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
6f03ebb1
Commit
6f03ebb1
authored
Sep 01, 2012
by
kimth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add message for student in CustomResponse error
parent
3de7c3a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
common/lib/capa/capa/responsetypes.py
+2
-1
No files found.
common/lib/capa/capa/responsetypes.py
View file @
6f03ebb1
...
...
@@ -726,7 +726,7 @@ class NumericalResponse(LoncapaResponse):
# I think this is just pyparsing.ParseException, calc.UndefinedVariable:
# But we'd need to confirm
except
:
raise
StudentInputError
(
"Invalid input: could not
parse
'
%
s' as a number"
%
\
raise
StudentInputError
(
"Invalid input: could not
interpret
'
%
s' as a number"
%
\
cgi
.
escape
(
student_answer
))
if
correct
:
...
...
@@ -920,6 +920,7 @@ def sympy_check2():
print
"oops in customresponse (code) error
%
s"
%
err
print
"context = "
,
self
.
context
print
traceback
.
format_exc
()
raise
StudentInputError
(
"Error: Problem could not be evaluated with your input"
)
# Notify student
else
:
# self.code is not a string; assume its a function
# this is an interface to the Tutor2 check functions
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment