From 0b1297b14adb33c9104127757edec4be6ce110ab Mon Sep 17 00:00:00 2001 From: "Desai, Kartikey H" Date: Wed, 13 May 2020 11:22:51 -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 151eb48..75c12f1 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