From: Tony Mack Date: Fri, 1 May 2009 00:50:45 +0000 (+0000) Subject: fix bug X-Git-Tag: sfa-0.9-0@14641~438 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=9ed7edd0f2d35a0402f9268afad3340d01368cba;p=sfa.git fix bug --- 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