From c6ede51b181b9b5d00bcdac50f1e4aeb0b2ee621 Mon Sep 17 00:00:00 2001 From: mksanger Date: Thu, 10 Aug 2023 16:53:45 +0100 Subject: [PATCH] Use extend instead of append for adding to list when getting acl list --- src/partisan/irods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partisan/irods.py b/src/partisan/irods.py index 2249d8a..b3bfa36 100644 --- a/src/partisan/irods.py +++ b/src/partisan/irods.py @@ -1687,7 +1687,7 @@ def acl(self, timeout=None, tries=1) -> List[AC]: if own and read: acs.difference_update(read) - acl.append(*acs) + acl.extend(acs) return sorted(acl)