summaryrefslogtreecommitdiff
path: root/libmat2
diff options
context:
space:
mode:
Diffstat (limited to 'libmat2')
-rw-r--r--libmat2/parser_factory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/parser_factory.py b/libmat2/parser_factory.py
index 6150b26..23529db 100644
--- a/libmat2/parser_factory.py
+++ b/libmat2/parser_factory.py
@@ -56,7 +56,7 @@ def get_parser(filename: str) -> Tuple[Optional[T], Optional[str]]:
56 try: 56 try:
57 return parser_class(filename), mtype 57 return parser_class(filename), mtype
58 except ValueError as e: 58 except ValueError as e:
59 logging.info("Got an exception when trying to instanciate " 59 logging.info("Got an exception when trying to instantiate "
60 "%s for %s: %s", parser_class, filename, e) 60 "%s for %s: %s", parser_class, filename, e)
61 return None, mtype 61 return None, mtype
62 return None, mtype 62 return None, mtype