From f25f5606b0010edd051e91c76553eacf7a7692c5 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 12 Feb 2007 19:57:49 +0000 Subject: [PATCH] - fixed call() params. now includes self --- PLC/Methods/AdmGetPersonKeys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Methods/AdmGetPersonKeys.py b/PLC/Methods/AdmGetPersonKeys.py index ab39d07f..946230a3 100644 --- a/PLC/Methods/AdmGetPersonKeys.py +++ b/PLC/Methods/AdmGetPersonKeys.py @@ -25,7 +25,7 @@ class AdmGetPersonKeys(GetKeys): returns = [Key.fields] - def call(auth, person_id_or_email): + def call(self, auth, person_id_or_email): # Get account information persons = Persons(self.api, [person_id_or_email]) if not persons: -- 2.47.0