From 00dec0266ce37bf218524bdbfb85c96826e697fb Mon Sep 17 00:00:00 2001 From: Pete Date: Thu, 2 Jul 2026 16:54:14 -0700 Subject: [PATCH] Fix f-string quote escaping bug in welcomebot-signups --- bin/welcomebot-signups | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/welcomebot-signups b/bin/welcomebot-signups index 292c6de..a96b0ad 100755 --- a/bin/welcomebot-signups +++ b/bin/welcomebot-signups @@ -83,5 +83,5 @@ if not rows: for acct, ip, classification, org, flagged, ipblock, ts in rows: flag = "FLAGGED" if flagged else "-" ipb = "ipblock=yes" if ipblock else "ipblock=no" - print(f"{ts} {acct or \"\":20s} {ip or \"\":16s} {classification or \"\":12s} {flag:8s} {ipb:12s} {org or \"\"}") + print(f"{ts} {acct or '':20s} {ip or '':16s} {classification or '':12s} {flag:8s} {ipb:12s} {org or ''}") '