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
fe2eeccb
Commit
fe2eeccb
authored
Jul 23, 2014
by
Justin Riley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HACK: fix courseware import error for static assets
parent
9adadb01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
common/lib/xmodule/xmodule/proctor_module.py
+8
-1
No files found.
common/lib/xmodule/xmodule/proctor_module.py
View file @
fe2eeccb
import
sys
import
json
import
json
import
logging
import
logging
import
requests
import
requests
...
@@ -11,7 +12,13 @@ from xmodule.seq_module import SequenceDescriptor
...
@@ -11,7 +12,13 @@ from xmodule.seq_module import SequenceDescriptor
from
xblock.fields
import
Scope
,
String
,
Boolean
from
xblock.fields
import
Scope
,
String
,
Boolean
from
xblock.fragment
import
Fragment
from
xblock.fragment
import
Fragment
from
courseware
import
module_tree_reset
try
:
from
courseware
import
module_tree_reset
except
ImportError
:
# TODO: this is an ugly hack to get around courseware import error during
# static asset generation. fix this later some how
if
'xmodule_assets'
not
in
' '
.
join
(
sys
.
argv
):
raise
log
=
logging
.
getLogger
(
'mitx.'
+
__name__
)
log
=
logging
.
getLogger
(
'mitx.'
+
__name__
)
...
...
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