Disable InsecureRequestWarning

This pops up for me on all transactions to the BMC from my mac

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/openbmc-events b/openbmc-events
index ac0615b..d9f4fc0 100755
--- a/openbmc-events
+++ b/openbmc-events
@@ -3,6 +3,9 @@
 import argparse
 import requests
 
+import urllib3
+urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
+
 
 class BMC:
     def __init__(self, server):