From 6327411ce5538751bd5b3ae07f13da4267d6aa11 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 13 Feb 2010 10:42:05 -0500 Subject: [PATCH] Fixed an array-nesting bug. --- bin/mailshears | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mailshears b/bin/mailshears index f8211b1..d34ce54 100755 --- a/bin/mailshears +++ b/bin/mailshears @@ -63,7 +63,7 @@ end # Figure out which addresses are in the filesystem, but not in the # database. -difference = [fs_accts - db_accts] +difference = fs_accts - db_accts # Don't output any unnecessary junk. Cron might mail it to someone. if difference.size > 0 -- 2.43.2