From 65d4060e6a1dee86952d04f6d7cea38835ae6988 Mon Sep 17 00:00:00 2001 From: "Desai, Kartikey H" Date: Wed, 13 May 2020 11:23:26 -0500 Subject: [PATCH] Fixes #389 --- stix2/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stix2/base.py b/stix2/base.py index 75c12f1..151eb48 100644 --- a/stix2/base.py +++ b/stix2/base.py @@ -422,7 +422,7 @@ class _Observable(_STIXBase): else: streamlined_obj_vals.append(kwargs[key]) if streamlined_obj_vals: - data = canonicalize(streamlined_obj_vals, utf8=False) + data = canonicalize(streamlined_obj_vals, utf8=False) # The situation is complicated w.r.t. python 2/3 behavior, so # I'd rather not rely on particular exceptions being raised to