Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
molgen
/
mpicms
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
20
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
a39fa4b
config
docs
locale
mpicms
patches
Fix-typo-in-ogg-media-format-description.patch
django-Do-not-check-ALLOWED_HOSTS-for-dummy-requests.patch
documents-and-images-support-partial-matches.patch
hack-snippets-chooser-to-use-autocomplete.patch
requirements
.coveragerc
.gitignore
.travis.yml
README.md
manage.py
pytest.ini
setup.cfg
Breadcrumbs
mpicms
/
patches
/
Fix-typo-in-ogg-media-format-description.patch
Blame
Blame
Latest commit
History
History
26 lines (22 loc) · 966 Bytes
Breadcrumbs
mpicms
/
patches
/
Fix-typo-in-ogg-media-format-description.patch
Top
File metadata and controls
Code
Blame
26 lines (22 loc) · 966 Bytes
Raw
From a34ec1288a11bd5e27ccc9f693da47c1692f973d Mon Sep 17 00:00:00 2001 From: Donald Buczek <buczek@molgen.mpg.de> Date: Tue, 19 Jan 2021 14:44:32 +0100 Subject: [PATCH] Fix typo in ogg media format description https://github.com/neon-jungle/wagtailvideos/pull/50 --- lib/python3.7/site-packages/wagtailvideos/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python3.7/site-packages/wagtailvideos/models.py b/lib/python3.7/site-packages/wagtailvideos/models.py index 75c8e0e..c0ab41b 100644 --- a/lib/python3.7/site-packages/wagtailvideos/models.py +++ b/lib/python3.7/site-packages/wagtailvideos/models.py @@ -47,7 +47,7 @@ class VideoQuality(ChoiceEnum): class MediaFormats(ChoiceEnum): webm = 'VP8 and Vorbis in WebM' mp4 = 'H.264 and MP3 in Mp4' - ogg = 'Theora and Voris in Ogg' + ogg = 'Theora and Vorbis in Ogg' def get_quality_param(self, quality): if self is MediaFormats.webm: -- 2.26.2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
You can’t perform that action at this time.