From: Sapan Bhatia Date: Tue, 27 Jul 2010 18:55:34 +0000 (-0400) Subject: Changed GetSlices to pass the additional information needed to the Slice table X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=ec87dc60fc59afb964e3ab348252d9ca9b57c957;p=plcapi.git Changed GetSlices to pass the additional information needed to the Slice table --- diff --git a/PLC/Methods/GetSlices.py b/PLC/Methods/GetSlices.py index a9cf2676..4b59b6fb 100644 --- a/PLC/Methods/GetSlices.py +++ b/PLC/Methods/GetSlices.py @@ -37,5 +37,5 @@ class GetSlices(Method): returns = [Slice.fields] def call(self, auth, slice_filter = None, return_fields = None): - slices = Slices(self.api, slice_filter, return_fields) + slices = Slices(self.api, self.caller, slice_filter, return_fields) return slices