Commit 33093e2d by David Ormsbee

Merge pull request #1313 from MITx/feature/ichuang/fix-bug-in-idashboard

fix bug in instructor dashboard groups code
parents 7ac36d2f 6d73a399
...@@ -111,6 +111,7 @@ def instructor_dashboard(request, course_id): ...@@ -111,6 +111,7 @@ def instructor_dashboard(request, course_id):
except Group.DoesNotExist: except Group.DoesNotExist:
group = Group(name=grpname) # create the group group = Group(name=grpname) # create the group
group.save() group.save()
return group
def get_beta_group(course): def get_beta_group(course):
""" """
......
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