From 4377b1e5e02fcfc494250b846dccbbe1a50c0221 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Wed, 27 May 2009 16:55:07 +0000 Subject: [PATCH] bug fix: instantiating Roles() only takes 2 args, not three. --- PLC/Persons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Persons.py b/PLC/Persons.py index 3c49ae6..95efb89 100644 --- a/PLC/Persons.py +++ b/PLC/Persons.py @@ -239,7 +239,7 @@ class Person(Row): # Translate roles into role_ids if role_names: - roles = Roles(self.api, role_names, ['role_id']).dict('role_id') + roles = Roles(self.api, role_names).dict('role_id') role_ids += roles.keys() # Add new ids, remove stale ids -- 2.43.0