Many small updates and fixes:
[monitor.git] / commands / shconfig.py
index ba2f5e5..0c599ab 100755 (executable)
@@ -4,5 +4,5 @@ from monitor import config
 
 for attr in dir(config):
        val = config.__getattribute__(attr)
-       if attr[0].isupper() and attr[1].isupper():
+       if (attr[0].isupper() and attr[1].isupper()) or ('email' in attr):
                print '%s="%s" ' % (attr, val)