From 6f5b23445e37b3eb36942010d6fd270f0c5686a9 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Thu, 11 Oct 2018 12:33:52 -0400 Subject: [PATCH] Fix import --- parsedmarc/splunk.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parsedmarc/splunk.py b/parsedmarc/splunk.py index 1765d3f..839e468 100644 --- a/parsedmarc/splunk.py +++ b/parsedmarc/splunk.py @@ -6,7 +6,8 @@ import urllib3 import requests -from parsedmarc import __version__, human_timestamp_to_timestamp +from parsedmarc.__version__ import __version__ +from parsedmarc.utils import human_timestamp_to_timestamp urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)