From 8d7230ba162b2640c575e05adb64b5de594346f6 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sat, 7 Jan 2023 17:10:02 +0100 Subject: [PATCH] Fix `-l` output --- mat2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mat2 b/mat2 index 283263b..55e9081 100755 --- a/mat2 +++ b/mat2 @@ -163,7 +163,7 @@ def show_parsers(): # mimetype, so there is not point in showing the mimetype at all continue formats.add(' - %s (%s)' % (mtype, ', '.join(extensions))) - __print_without_chars('\n'.join(sorted(formats))) + print('\n'.join(sorted(formats))) def __get_files_recursively(files: list[str]) -> list[str]: