From 1353177a1b256427ee513e654b83d9b60462b20d Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 30 Nov 2019 12:20:06 -0600 Subject: [PATCH] join_bytes: pass the join() args correctly for py3 Signed-off-by: Rob Browning --- lib/bup/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bup/compat.py b/lib/bup/compat.py index b795b65..f713f52 100644 --- a/lib/bup/compat.py +++ b/lib/bup/compat.py @@ -42,7 +42,7 @@ if py3: def join_bytes(*items): """Return the concatenated bytes or memoryview arguments as bytes.""" - return b''.join(*items) + return b''.join(items) else: # Python 2 -- 2.39.2