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
fc791ad8
Commit
fc791ad8
authored
Jun 05, 2012
by
ichuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more minor exception handling changes to capa_module
parent
c54f8951
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
djangoapps/courseware/modules/capa_module.py
+2
-2
No files found.
djangoapps/courseware/modules/capa_module.py
View file @
fc791ad8
...
...
@@ -202,7 +202,7 @@ 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
)
...
...
@@ -213,7 +213,7 @@ class Module(XModule):
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
(
'<'
,
'<'
)
...
...
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