From 30d9d836e4440d7c9c53ef58a9959d5395b45224 Mon Sep 17 00:00:00 2001 From: rope Date: Mon, 4 May 2026 02:35:58 -0700 Subject: [PATCH] Update services/sabnzbd.nix --- services/sabnzbd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sabnzbd.nix b/services/sabnzbd.nix index 9a32c4b..084643f 100644 --- a/services/sabnzbd.nix +++ b/services/sabnzbd.nix @@ -17,7 +17,7 @@ c = configparser.RawConfigParser() c.read(config_file) if not c.has_section('misc'): c.add_section('misc') -wl = c.get('misc', 'host_whitelist', fallback='') +wl = c.get('misc', 'host_whitelist', fallback="") entries = [h.strip() for h in wl.split(',') if h.strip()] if hostname not in entries: entries.append(hostname)