From d25961e06c95685abda47c4117b76ae3e88db5dd Mon Sep 17 00:00:00 2001 From: Andrei Khrapavitski Date: Tue, 21 Apr 2020 15:17:30 +0300 Subject: [PATCH] resolving type error in execution_plan_to_string --- redisgraph/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redisgraph/graph.py b/redisgraph/graph.py index 0d3f900..b05a2a7 100644 --- a/redisgraph/graph.py +++ b/redisgraph/graph.py @@ -131,7 +131,7 @@ def query(self, q, params=None): return QueryResult(self, response) def _execution_plan_to_string(self, plan): - return "\n".join(plan) + return b"\n".join(plan) def execution_plan(self, query): """