From dc022d6ffb486be4bb274ae4253edf83b05d24bc Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 31 Dec 2009 21:01:03 +0000 Subject: [PATCH] fix spelling error --- sfa/methods/create_slice.py | 2 +- sfa/methods/delete_slice.py | 2 +- sfa/methods/get_resources.py | 2 +- sfa/methods/get_slices.py | 2 +- sfa/methods/get_ticket.py | 2 +- sfa/methods/list.py | 2 +- sfa/methods/register_peer_object.py | 2 +- sfa/methods/remove.py | 2 +- sfa/methods/remove_peer_object.py | 2 +- sfa/methods/reset_slice.py | 2 +- sfa/methods/start_slice.py | 2 +- sfa/methods/stop_slice.py | 2 +- sfa/methods/update.py | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/sfa/methods/create_slice.py b/sfa/methods/create_slice.py index 6f171770..7287b512 100644 --- a/sfa/methods/create_slice.py +++ b/sfa/methods/create_slice.py @@ -31,7 +31,7 @@ class create_slice(Method): Parameter(str, "Human readable name of slice to instantiate"), Parameter(str, "Resource specification"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/delete_slice.py b/sfa/methods/delete_slice.py index 11b9124e..cc43c50f 100644 --- a/sfa/methods/delete_slice.py +++ b/sfa/methods/delete_slice.py @@ -23,7 +23,7 @@ class delete_slice(Method): Parameter(str, "Credential string"), Parameter(str, "Human readable name of slice to delete"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/get_resources.py b/sfa/methods/get_resources.py index 42745179..a2d945b8 100644 --- a/sfa/methods/get_resources.py +++ b/sfa/methods/get_resources.py @@ -29,7 +29,7 @@ class get_resources(Method): Mixed(Parameter(str, "Human readable name (hrn)"), Parameter(None, "hrn not specified")), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(str, "String representatin of an rspec") diff --git a/sfa/methods/get_slices.py b/sfa/methods/get_slices.py index 5c0f40e7..fe5c0941 100644 --- a/sfa/methods/get_slices.py +++ b/sfa/methods/get_slices.py @@ -22,7 +22,7 @@ class get_slices(Method): accepts = [ Parameter(str, "Credential string"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = [Parameter(str, "Human readable slice name (hrn)")] diff --git a/sfa/methods/get_ticket.py b/sfa/methods/get_ticket.py index 8211a1e3..2ee18f20 100644 --- a/sfa/methods/get_ticket.py +++ b/sfa/methods/get_ticket.py @@ -37,7 +37,7 @@ class get_ticket(Method): Parameter(str, "Human readable name of slice to retrive a ticket for (hrn)"), Parameter(str, "Resource specification (rspec)"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(str, "String represeneation of a ticket object") diff --git a/sfa/methods/list.py b/sfa/methods/list.py index 89354294..df139651 100644 --- a/sfa/methods/list.py +++ b/sfa/methods/list.py @@ -25,7 +25,7 @@ class list(Method): Parameter(str, "Credential string"), Parameter(str, "Human readable name (hrn)"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = [GeniRecord] diff --git a/sfa/methods/register_peer_object.py b/sfa/methods/register_peer_object.py index df1fa943..70057166 100644 --- a/sfa/methods/register_peer_object.py +++ b/sfa/methods/register_peer_object.py @@ -32,7 +32,7 @@ class register_peer_object(Method): Parameter(str, "Credential string"), Parameter(dict, "Record dictionary containing record fields"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/remove.py b/sfa/methods/remove.py index 33113c21..4c3c58d6 100644 --- a/sfa/methods/remove.py +++ b/sfa/methods/remove.py @@ -30,7 +30,7 @@ class remove(Method): Parameter(str, "Record type"), Parameter(str, "Human readable name of slice to instantiate"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/remove_peer_object.py b/sfa/methods/remove_peer_object.py index 9ce27277..be8f09cd 100644 --- a/sfa/methods/remove_peer_object.py +++ b/sfa/methods/remove_peer_object.py @@ -28,7 +28,7 @@ class remove_peer_object(Method): Parameter(str, "Credential string"), Parameter(dict, "Record dictionary"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/reset_slice.py b/sfa/methods/reset_slice.py index 57216dab..89eeb880 100644 --- a/sfa/methods/reset_slice.py +++ b/sfa/methods/reset_slice.py @@ -23,7 +23,7 @@ class reset_slice(Method): Parameter(str, "Credential string"), Parameter(str, "Human readable name of slice to instantiate"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/start_slice.py b/sfa/methods/start_slice.py index 446215c7..01d8293a 100644 --- a/sfa/methods/start_slice.py +++ b/sfa/methods/start_slice.py @@ -23,7 +23,7 @@ class start_slice(Method): Parameter(str, "Credential string"), Parameter(str, "Human readable name of slice to instantiate"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = [Parameter(int, "1 if successful")] diff --git a/sfa/methods/stop_slice.py b/sfa/methods/stop_slice.py index 291ac626..77ecd3fb 100644 --- a/sfa/methods/stop_slice.py +++ b/sfa/methods/stop_slice.py @@ -23,7 +23,7 @@ class stop_slice(Method): Parameter(str, "Credential string"), Parameter(str, "Human readable name of slice to instantiate"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") diff --git a/sfa/methods/update.py b/sfa/methods/update.py index 23b74c8f..e97a3267 100644 --- a/sfa/methods/update.py +++ b/sfa/methods/update.py @@ -31,7 +31,7 @@ class update(Method): Parameter(str, "Credential string"), Parameter(dict, "Record dictionary to be updated"), Mixed(Parameter(str, "Human readable name of the original caller"), - Paramater(None, "Origin hrn not specified")) + Parameter(None, "Origin hrn not specified")) ] returns = Parameter(int, "1 if successful") -- 2.43.0