From 3ec71e7758126a36d52bae0aad463e30a9ae7019 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Thu, 1 Feb 2024 04:07:53 +0100 Subject: [PATCH] use proper escaping for python 3.12 compatibility --- owrx/feature.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/feature.py b/owrx/feature.py index 6afbdfb4..fbc7c821 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -523,9 +523,9 @@ class FeatureDetector(object): def has_freedv_rx(self): """ - The "freedv\_rx" executable is required to demodulate FreeDV digital transmissions. It comes together with the + The "freedv\\_rx" executable is required to demodulate FreeDV digital transmissions. It comes together with the codec2 library, but it's only a supplemental part and not installed by default or contained in its packages. - To install it, you will need to compile codec2 from source and manually install freedv\_rx. + To install it, you will need to compile codec2 from source and manually install freedv\\_rx. Detailed installation instructions are available on the [OpenWebRX wiki](https://github.com/jketterl/openwebrx/wiki/FreeDV-demodulator-notes).