From 5f9d5db1deba298dff481c578d3c1ac7973ed328 Mon Sep 17 00:00:00 2001 From: cclauss Date: Fri, 4 Jan 2019 15:03:48 +0100 Subject: [PATCH] Remove a stray 'not' --- src/Mod/Import/stepZ.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Import/stepZ.py b/src/Mod/Import/stepZ.py index 89c134180f..96fe1ea9ae 100644 --- a/src/Mod/Import/stepZ.py +++ b/src/Mod/Import/stepZ.py @@ -33,7 +33,7 @@ else: # six.PY2 def mkz_string(input): if six.PY3: - if not isinstance(input, str): + if isinstance(input, str): return input else: input = input.encode('utf-8')