X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FList.py;h=83d7a6e0135854f8399287a667983daba8c4a7cb;hb=4a2337e7f70cef81a8de37829aa63fc941c4b96e;hp=c023fa012e5c23f014b8722f3ec0ed5e2bfb8a37;hpb=699667b3e734e954b0c93fbb2a6c29d82246d1dd;p=sfa.git diff --git a/sfa/methods/List.py b/sfa/methods/List.py index c023fa01..83d7a6e0 100644 --- a/sfa/methods/List.py +++ b/sfa/methods/List.py @@ -25,7 +25,8 @@ class List(Method): # xxx used to be [SfaRecord] returns = [Parameter(dict, "registry record")] - def call(self, xrn, creds): + def call(self, xrn, creds, options=None): + if options is None: options={} hrn, type = urn_to_hrn(xrn) valid_creds = self.api.auth.checkCredentials(creds, 'list') @@ -33,4 +34,4 @@ class List(Method): origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) - return self.api.manager.List(self.api, xrn) + return self.api.manager.List(self.api, xrn, options=options)