Commit 763e4722 by Calen Pennington

Merge pull request #980 from MITx/fix/cdodge/fix-import-tests

fix grading policy filepath generation
parents 9cf1ac4e 90f9d5fc
...@@ -202,7 +202,7 @@ class CourseDescriptor(SequenceDescriptor): ...@@ -202,7 +202,7 @@ class CourseDescriptor(SequenceDescriptor):
# Try to load grading policy # Try to load grading policy
paths = ['grading_policy.json'] paths = ['grading_policy.json']
if policy_dir: if policy_dir:
paths = [policy_dir + 'grading_policy.json'] + paths paths = [policy_dir + '/grading_policy.json'] + paths
policy = json.loads(cls.read_grading_policy(paths, system)) policy = json.loads(cls.read_grading_policy(paths, system))
......
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