From ec87dc60fc59afb964e3ab348252d9ca9b57c957 Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Tue, 27 Jul 2010 14:55:34 -0400 Subject: [PATCH] Changed GetSlices to pass the additional information needed to the Slice table --- PLC/Methods/GetSlices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.0