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
72fa8ed5
Commit
72fa8ed5
authored
Dec 08, 2014
by
Calen Pennington
Committed by
Zia Fazal
Apr 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make ErrorDescriptor more resistent to errors
parent
a4c33c18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
common/lib/xmodule/xmodule/error_module.py
+7
-2
No files found.
common/lib/xmodule/xmodule/error_module.py
View file @
72fa8ed5
...
@@ -108,7 +108,7 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
...
@@ -108,7 +108,7 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
cls
,
cls
,
# The error module doesn't use scoped data, and thus doesn't need
# The error module doesn't use scoped data, and thus doesn't need
# real scope keys
# real scope keys
ScopeIds
(
'error'
,
None
,
location
,
location
),
ScopeIds
(
None
,
'error'
,
location
,
location
),
field_data
,
field_data
,
)
)
...
@@ -120,9 +120,14 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
...
@@ -120,9 +120,14 @@ class ErrorDescriptor(ErrorFields, XModuleDescriptor):
@classmethod
@classmethod
def
from_json
(
cls
,
json_data
,
system
,
location
,
error_msg
=
'Error not available'
):
def
from_json
(
cls
,
json_data
,
system
,
location
,
error_msg
=
'Error not available'
):
try
:
json_string
=
json
.
dumps
(
json_data
,
skipkeys
=
False
,
indent
=
4
,
cls
=
EdxJSONEncoder
)
except
:
# pylint: disable=bare-except
json_string
=
repr
(
json_data
)
return
cls
.
_construct
(
return
cls
.
_construct
(
system
,
system
,
json
.
dumps
(
json_data
,
skipkeys
=
False
,
indent
=
4
,
cls
=
EdxJSONEncoder
)
,
json
_string
,
error_msg
,
error_msg
,
location
=
location
location
=
location
)
)
...
...
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