From 01c6b996f1858071eb2c7726b59233f2313fc646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD=20=D0=94=D0=B7=D1=8E=D0=B1=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE?= Date: Tue, 14 Sep 2021 16:29:59 +0300 Subject: [PATCH] fixed cl-kernel crash --- pym/calculate/lib/format/kernel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pym/calculate/lib/format/kernel.py b/pym/calculate/lib/format/kernel.py index 3bc0a28..46a2754 100644 --- a/pym/calculate/lib/format/kernel.py +++ b/pym/calculate/lib/format/kernel.py @@ -120,5 +120,4 @@ class kernel(TemplateFormat): return '%s=%s\n' % (key, value) return "".join([getline(key, value) - for key, value in self.doc.body.items()]).decode( - 'UTF-8') + for key, value in self.doc.body.items()])