Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mpicms/patches/Fix-typo-in-ogg-media-format-description.patch
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (22 sloc)
966 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |