Commit 820924fd by David Baumgold

Insert *right* at the front

parent 1219bd75
...@@ -9,6 +9,6 @@ import os ...@@ -9,6 +9,6 @@ import os
# each of which run "pip install -e ." (as part of requirements/edx/local.txt) # each of which run "pip install -e ." (as part of requirements/edx/local.txt)
# Until we re-run pip install, the other copies of edx-platform could # Until we re-run pip install, the other copies of edx-platform could
# take precedence, leading to some very strange results. # take precedence, leading to some very strange results.
sys.path.insert(1, os.path.dirname(__file__)) sys.path.insert(0, os.path.dirname(__file__))
from pavelib import * from pavelib import *
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