Merge pull request #135 from MAJA-Lin/maja-lin/bugfix/ISSUE-138

Fix typo on formatter 'webvtt'
This commit is contained in:
jdepoix 2021-12-13 10:16:14 +01:00 committed by GitHub
commit 1e61fac76a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class FormatterLoader(object):
'json': JSONFormatter, 'json': JSONFormatter,
'pretty': PrettyPrintFormatter, 'pretty': PrettyPrintFormatter,
'text': TextFormatter, 'text': TextFormatter,
'webvvt': WebVTTFormatter, 'webvtt': WebVTTFormatter,
} }
class UnknownFormatterType(Exception): class UnknownFormatterType(Exception):