From 51937232db4f9173a9e4309d15b3e7c7cbfa749f Mon Sep 17 00:00:00 2001 From: Michael Chisholm Date: Mon, 11 Jan 2021 20:35:41 -0500 Subject: [PATCH] Fix to an import statement which was necessary due to the circular import refactoring. I think I just forgot to include this in the previous commit... --- stix2/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stix2/utils.py b/stix2/utils.py index 02e6f39..94921a7 100644 --- a/stix2/utils.py +++ b/stix2/utils.py @@ -10,7 +10,7 @@ import six import stix2 try: - import stix2.parsing as mappings + import stix2.registry as mappings except ImportError: import stix2.core as mappings