From 9ed7edd0f2d35a0402f9268afad3340d01368cba Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 1 May 2009 00:50:45 +0000 Subject: [PATCH 1/1] fix bug --- geni/methods/start_slice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geni/methods/start_slice.py b/geni/methods/start_slice.py index d3023d39..5eec8f7e 100644 --- a/geni/methods/start_slice.py +++ b/geni/methods/start_slice.py @@ -6,7 +6,7 @@ from geni.util.parameter import Parameter, Mixed from geni.util.auth import Auth from geni.util.slices import Slices -class start_slices(Method): +class start_slice(Method): """ Start the specified slice @@ -28,6 +28,6 @@ class start_slices(Method): self.api.auth.check(cred, 'startslice') slices = Slices(self.api) - slices.stop_slice(hrn): + slices.start_slice(hrn) return 1 -- 2.43.0