From: Michael Orlitzky Date: Sat, 13 Feb 2010 15:42:05 +0000 (-0500) Subject: Fixed an array-nesting bug. X-Git-Tag: 0.0.1~150 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=6327411ce5538751bd5b3ae07f13da4267d6aa11 Fixed an array-nesting bug. --- 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