Commit 68610ec1 by Xavier Antoviaque

rebase-20140926: Fix errors from conflicts resolution

parent 552750ac
...@@ -7,7 +7,7 @@ from eventtracking import tracker ...@@ -7,7 +7,7 @@ from eventtracking import tracker
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from track.contexts import COURSE_REGEX from util.request import COURSE_REGEX
from user_api.models import UserCourseTag from user_api.models import UserCourseTag
......
...@@ -1399,7 +1399,7 @@ INSTALLED_APPS = ( ...@@ -1399,7 +1399,7 @@ INSTALLED_APPS = (
'edx_jsme', # Molecular Structure 'edx_jsme', # Molecular Structure
# Country list # Country list
'django_countries' 'django_countries',
# EDX API application # EDX API application
'api_manager', 'api_manager',
......
...@@ -116,6 +116,7 @@ def python_prereqs_installation(): ...@@ -116,6 +116,7 @@ def python_prereqs_installation():
Installs Python prerequisites Installs Python prerequisites
""" """
for req_file in PYTHON_REQ_FILES: for req_file in PYTHON_REQ_FILES:
sh("rm -rf /edx/app/edxapp/venvs/edxapp/build/*")
sh("pip install -q --exists-action w -r {req_file}".format(req_file=req_file)) sh("pip install -q --exists-action w -r {req_file}".format(req_file=req_file))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment