1
0
Fork 0
mirror of synced 2025-07-04 04:17:29 +02:00

This is mat2, not MAT2

Closes #131
This commit is contained in:
georg 2019-11-28 02:15:20 +00:00 committed by jvoisin
parent 6e52661cfb
commit 697cb36b81
13 changed files with 58 additions and 58 deletions

View file

@ -52,7 +52,7 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
self.member_class = None # type: ignore
# Those are the files that have a format that _isn't_
# supported by MAT2, but that we want to keep anyway.
# supported by mat2, but that we want to keep anyway.
self.files_to_keep = set() # type: Set[Pattern]
# Those are the files that we _do not_ want to keep,

View file

@ -19,7 +19,7 @@ from . import abstract
poppler_version = Poppler.get_version()
if LooseVersion(poppler_version) < LooseVersion('0.46'): # pragma: no cover
raise ValueError("MAT2 needs at least Poppler version 0.46 to work. \
raise ValueError("mat2 needs at least Poppler version 0.46 to work. \
The installed version is %s." % poppler_version) # pragma: no cover

View file

@ -36,7 +36,7 @@ class TorrentParser(abstract.AbstractParser):
class _BencodeHandler:
"""
Since bencode isn't that hard to parse,
MAT2 comes with its own parser, based on the spec
mat2 comes with its own parser, based on the spec
https://wiki.theory.org/index.php/BitTorrentSpecification#Bencoding
"""
def __init__(self):