reverting whoami change
diff --git a/kif.py b/kif.py
index c97b8c6..6babc21 100644
--- a/kif.py
+++ b/kif.py
@@ -43,7 +43,7 @@
 TB = (2 ** 40)
 
 # Helper func
-def who_am_i():
+def whoami():
     """Returns the FQDN of the box the program runs on"""
     try:
         # Get local hostname (what you see in the terminal)
@@ -68,7 +68,7 @@
     return socket.getfqdn()
 
 # hostname, pid file etc
-ME = who_am_i()
+ME = whoami()
 TEMPLATE_EMAIL = open("email_template.txt", "r").read()
 # Default to checking triggers every N seconds.
 DEFAULT_INTERVAL = 300