diff options
author | Kumar Appaiah | 2018-07-31 09:56:57 +0530 |
---|---|---|
committer | Kumar Appaiah | 2018-07-31 09:56:57 +0530 |
commit | d2258bcfc5e756661d9b53ed04ab78606bd9b18e (patch) | |
tree | 59dbfa7e3f24bd82bba50f0e71977f02d57c4a9c /yaksh/views.py | |
parent | 239ed05355e46448e3232d3a026e525f821a7841 (diff) | |
download | online_test-d2258bcfc5e756661d9b53ed04ab78606bd9b18e.tar.gz online_test-d2258bcfc5e756661d9b53ed04ab78606bd9b18e.tar.bz2 online_test-d2258bcfc5e756661d9b53ed04ab78606bd9b18e.zip |
Fix spelling error: choosen to chosen
Diffstat (limited to 'yaksh/views.py')
-rw-r--r-- | yaksh/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/views.py b/yaksh/views.py index ecd7efd..2ff8d5c 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -2451,7 +2451,7 @@ def design_module(request, module_id, course_id=None): learning_module = LearningModule.objects.get(id=module_id) if request.method == "POST": if "Add" in request.POST: - add_values = request.POST.get("choosen_list").split(',') + add_values = request.POST.get("chosen_list").split(',') to_add_list = [] if add_values: ordered_units = learning_module.get_learning_units() |