commit c5211c85401968eed54c415cf9e56e3efd0a11e1
Author: David Sorber <david.sorber@gmail.com>
Date:   Tue Feb 23 11:35:46 2016 -0500

    Fixing a silly bug where I renamed a function as a variable in my checker.py script.

diff --git a/software/misc/checker.py b/software/misc/checker.py
index 4c4fbd6..1627f87 100755
--- a/software/misc/checker.py
+++ b/software/misc/checker.py
@@ -128,20 +128,20 @@ def main():
     output.extend(raid_output)
 
     # If no errors prepend "all okay" message
-    send_email = False
+    should_send = False
     if not errors:
         output.insert(2, 'All OKAY.\n')
         
         # Send an email every Thursday even if status is okay
         if timestamp.weekday() == 3:
-            send_email = True
+            should_send = True
     else:
         # Send email if there were any errors
         output.insert(2, '\n'.join(errors))
-        send_email = True
+        should_send = True
 
     # Send email
-    if send_email:
+    if should_send:
         send_email('Report: {:s} - {:s}\n'.format(hostname, ts_str), 
                    '\n'.join(output))
 
