From: Andreas Monzner Date: Wed, 11 Oct 2006 14:07:50 +0000 (+0000) Subject: remove unneeded N/A X-Git-Tag: 2.6.0~2931 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/630201d0c8e0753ff466761f0c21e6ba47ee845d remove unneeded N/A --- diff --git a/lib/python/Components/Converter/RadioText.py b/lib/python/Components/Converter/RadioText.py index e4499950..c47e02fb 100644 --- a/lib/python/Components/Converter/RadioText.py +++ b/lib/python/Components/Converter/RadioText.py @@ -10,7 +10,7 @@ class RadioText(Converter, object): def getText(self): rt = self.source.radiotext if rt is None: - return "N/A" + return "" text = rt.getRadioText() if self.type == "RadioText-UTF8": return text.decode("latin-1").encode("utf-8")