Tagging module Monitor - Monitor-2.0-10
[monitor.git] / showlatlon.py
index 1d06594..2176462 100755 (executable)
@@ -9,7 +9,7 @@ from datetime import datetime, timedelta
 
 import database
 import comon
-from monitor.common import color_pcu_state, datetime_fromstr
+from monitor.common import color_pcu_state, datetime_fromstr, email_exception
 from nodehistory import get_filefromglob
 import time
 import traceback
@@ -83,8 +83,8 @@ def main():
                begin = time.strftime(format)
 
        d = datetime_fromstr(begin)
-       fbstr = get_filefromglob(d, "production.findbad")
-       fbpcustr = get_filefromglob(d, "production.findbadpcus")
+       fbstr = get_filefromglob(d, "production.findbad")[0]
+       fbpcustr = get_filefromglob(d, "production.findbadpcus")[0]
 
        l_plcnodes = plccache.l_nodes
        l_plcsites = plccache.l_sites
@@ -211,3 +211,5 @@ if __name__ == "__main__":
                main()
        except IOError:
                pass
+       except:
+               email_exception()