From 9947f13817019a1687ca76a0adc01f4b06102c2d Mon Sep 17 00:00:00 2001 From: colaclanth Date: Wed, 17 Jul 2019 20:28:35 +0100 Subject: [PATCH] Change list option to print instead of log --- sstv/command.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sstv/command.py b/sstv/command.py index b887598..e44d683 100644 --- a/sstv/command.py +++ b/sstv/command.py @@ -120,13 +120,13 @@ examples: def list_supported_modes(self): modes = ', '.join([fmt.NAME for fmt in VIS_MAP.values()]) - log_message("Supported modes: {}".format(modes)) + print("Supported modes: {}".format(modes)) def list_supported_audio_formats(self): audio_formats = ', '.join(available_audio_formats().keys()) - log_message("Supported audio formats: {}".format(audio_formats)) + print("Supported audio formats: {}".format(audio_formats)) def list_supported_image_formats(self): Image.init() image_formats = ', '.join(Image.SAVE.keys()) - log_message("Supported image formats: {}".format(image_formats)) + print("Supported image formats: {}".format(image_formats))