Commit 3842c39f by Arjun Singh

Fixing order that problem scores are displayed in

parent 113535db
...@@ -17,6 +17,7 @@ log = logging.getLogger("mitx.courseware") ...@@ -17,6 +17,7 @@ log = logging.getLogger("mitx.courseware")
def yield_module_descendents(module): def yield_module_descendents(module):
stack = module.get_display_items() stack = module.get_display_items()
stack.reverse()
while len(stack) > 0: while len(stack) > 0:
next_module = stack.pop() 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