From 9e502406fb676f497cf1eb522f58743757f16863 Mon Sep 17 00:00:00 2001 From: quadrismegistus Date: Mon, 7 Sep 2020 23:52:16 +0100 Subject: [PATCH] updates --- komrade/backend/the_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komrade/backend/the_operator.py b/komrade/backend/the_operator.py index 60c9cae..b8bdc86 100644 --- a/komrade/backend/the_operator.py +++ b/komrade/backend/the_operator.py @@ -82,7 +82,7 @@ class TheOperator(Operator): self.log('unencr_header',unencr_header) self.log('encr_data_b',encr_data_b) - total_pkg = unencr_header + BSEP + encr_data_b + total_pkg = unencr_header + BSEP + encr_data_b.encode() self.log('total_pkg',total_pkg) total_pkg_b64 = b64encode(total_pkg) self.log('total_pkg_b64',total_pkg_b64)