Commit 5ba76a50 by David Ormsbee

Merge pull request #572 from MITx/feature/arjun/fix_progress_scores_order

Fixing order that problem scores are displayed on the progress page
parents 231b8c6a 3842c39f
......@@ -17,6 +17,7 @@ log = logging.getLogger("mitx.courseware")
def yield_module_descendents(module):
stack = module.get_display_items()
stack.reverse()
while len(stack) > 0:
next_module = stack.pop()
......
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