diff options
| author | jvoisin | 2023-01-07 17:10:02 +0100 |
|---|---|---|
| committer | jvoisin | 2023-01-07 17:10:02 +0100 |
| commit | 8d7230ba162b2640c575e05adb64b5de594346f6 (patch) | |
| tree | b6f6bb54e45b2cb83d531c92bd1e9626a628755c | |
| parent | 2b02c82e7fd433635932ec8ece7ba4a46bcfa928 (diff) | |
Fix `-l` output
| -rwxr-xr-x | mat2 | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -163,7 +163,7 @@ def show_parsers(): | |||
| 163 | # mimetype, so there is not point in showing the mimetype at all | 163 | # mimetype, so there is not point in showing the mimetype at all |
| 164 | continue | 164 | continue |
| 165 | formats.add(' - %s (%s)' % (mtype, ', '.join(extensions))) | 165 | formats.add(' - %s (%s)' % (mtype, ', '.join(extensions))) |
| 166 | __print_without_chars('\n'.join(sorted(formats))) | 166 | print('\n'.join(sorted(formats))) |
| 167 | 167 | ||
| 168 | 168 | ||
| 169 | def __get_files_recursively(files: list[str]) -> list[str]: | 169 | def __get_files_recursively(files: list[str]) -> list[str]: |
