From 4e4266f1c4e34522fd7ee18b593226e8c6e58ffb Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Tue, 24 Mar 2020 22:50:43 +0100 Subject: [PATCH] fix wording --- owrx/sdr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/sdr.py b/owrx/sdr.py index 69aa261..c52406f 100644 --- a/owrx/sdr.py +++ b/owrx/sdr.py @@ -28,7 +28,7 @@ class SdrService(object): try: if not featureDetector.is_available(value["type"]): logger.error( - 'The RTL source type "{0}" is not available. please check requirements.'.format( + 'The SDR source type "{0}" is not available. please check requirements.'.format( value["type"] ) ) @@ -36,7 +36,7 @@ class SdrService(object): return True except UnknownFeatureException: logger.error( - 'The RTL source type "{0}" is invalid. Please check your configuration'.format(value["type"]) + 'The SDR source type "{0}" is invalid. Please check your configuration'.format(value["type"]) ) return False