Remove a stray 'not'

This commit is contained in:
cclauss
2019-01-04 15:03:48 +01:00
committed by wmayer
parent 361c44c6dc
commit 5f9d5db1de

View File

@@ -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')