From 8846977719850357dc3844db181bf7520d613004 Mon Sep 17 00:00:00 2001 From: Christopher Vollick <0@psycoti.ca> Date: Mon, 23 Jan 2023 18:02:32 -0500 Subject: [PATCH] Fixup Correct Duplicate Addrs This was a linter error, and I wanted to get it to linter clean before writing new code. --- bin/correct_duplicate_addrs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/correct_duplicate_addrs b/bin/correct_duplicate_addrs index 225cad9..12e80a1 100755 --- a/bin/correct_duplicate_addrs +++ b/bin/correct_duplicate_addrs @@ -28,7 +28,7 @@ $stdin.each_line do |line| end addr = match[1] - keys = match[2].split(" ") + keys = match[2].split # This is the customer ID of the support chat # All duplicates are moved to the support addr so we still hear when people -- 2.45.2