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
568ebad9
Commit
568ebad9
authored
Jun 05, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dogfood' into dogfood
parents
8575ed43
fc791ad8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
djangoapps/courseware/modules/capa_module.py
+5
-5
No files found.
djangoapps/courseware/modules/capa_module.py
View file @
568ebad9
...
...
@@ -199,18 +199,18 @@ class Module(XModule):
try
:
fp
=
self
.
filestore
.
open
(
self
.
filename
)
except
Exception
,
err
:
log
.
e
rror
(
'[courseware.capa.capa_module.Module.init] error
%
s: cannot open file
%
s'
%
(
err
,
self
.
filename
))
log
.
e
xception
(
'[courseware.capa.capa_module.Module.init] error
%
s: cannot open file
%
s'
%
(
err
,
self
.
filename
))
if
self
.
DEBUG
:
# create a dummy problem instead of failing
fp
=
StringIO
.
StringIO
(
'<problem><text><font color="red" size="+2">Problem file
%
s is missing</font></text></problem>'
%
self
.
filename
)
fp
.
name
=
"StringIO"
else
:
raise
Exception
,
err
raise
try
:
self
.
lcp
=
LoncapaProblem
(
fp
,
self
.
item_id
,
state
,
seed
=
seed
,
system
=
self
.
system
)
except
Exception
,
err
:
msg
=
'[courseware.capa.capa_module.Module.init] error
%
s: cannot create LoncapaProblem
%
s'
%
(
err
,
self
.
filename
)
log
.
e
rror
(
msg
)
log
.
e
xception
(
msg
)
if
self
.
DEBUG
:
msg
=
'<p>
%
s</p>'
%
msg
.
replace
(
'<'
,
'<'
)
msg
+=
'<p><pre>
%
s</pre></p>'
%
traceback
.
format_exc
()
.
replace
(
'<'
,
'<'
)
...
...
@@ -219,7 +219,7 @@ class Module(XModule):
fp
.
name
=
"StringIO"
self
.
lcp
=
LoncapaProblem
(
fp
,
self
.
item_id
,
state
,
seed
=
seed
,
system
=
self
.
system
)
else
:
raise
Exception
,
err
raise
def
handle_ajax
(
self
,
dispatch
,
get
):
'''
...
...
@@ -351,7 +351,7 @@ class Module(XModule):
try
:
html
=
self
.
get_problem_html
(
encapsulate
=
False
)
except
Exception
,
err
:
log
.
error
(
'failed to generate html
, error
%
s'
%
err
)
log
.
error
(
'failed to generate html
'
)
raise
Exception
,
err
return
json
.
dumps
({
'success'
:
success
,
...
...
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