From f6beeb09f836c902b991cb3e604fe5437f7fb83f Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Mon, 6 Jul 2026 20:07:15 +0200 Subject: [PATCH] Fix the maintainer_update.py script (#3573) --- maintainer_update.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maintainer_update.py b/maintainer_update.py index 478ad130..b4622f8f 100755 --- a/maintainer_update.py +++ b/maintainer_update.py @@ -54,6 +54,8 @@ def get_help_text(option): help_text = re.sub(r'(?s).*Usage:', '', help_text) help_text = re.sub(r'(?s).*option requires an argument -- \'?.\'?', '', help_text) # help_text = re.sub(r'(?m)^\s*=\s+(.*)\s+=\s*$', r'### \1', help_text) + # normalize SoapySDR availability line (build-dependent, causes spurious diffs) + help_text = re.sub(r'(?m)^\tSoapySDR device driver is (not )?available\.\n?', '\tSoapySDR device driver is available.\n', help_text) return help_text