summaryrefslogtreecommitdiff
path: root/yaksh/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r--yaksh/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py
index 66076b1..bfa5566 100644
--- a/yaksh/forms.py
+++ b/yaksh/forms.py
@@ -330,7 +330,7 @@ class LessonForm(forms.ModelForm):
file = self.cleaned_data.get("video_file")
if file:
extension = file.name.split(".")[-1]
- actual_extension = ["mp4", "ogv"]
+ actual_extension = ["mp4", "ogv", "webm"]
if extension not in actual_extension:
raise forms.ValidationError(
"Please upload video files in {0} format".format(