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 ''}") '