cosmetic
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 14 Apr 2011 10:38:30 +0000 (12:38 +0200)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 14 Apr 2011 10:38:30 +0000 (12:38 +0200)
sfa/methods/DeleteSliver.py
sfa/methods/GetTicket.py

index 741bbd7..ae30177 100644 (file)
@@ -26,7 +26,7 @@ class DeleteSliver(Method):
     returns = Parameter(int, "1 if successful")
     
     def call(self, xrn, creds, call_id=""):
-        hrn, type = urn_to_hrn(xrn)
+        (hrn, type) = urn_to_hrn(xrn)
         valid_creds = self.api.auth.checkCredentials(creds, 'deletesliver', hrn)
 
         #log the call
index 812fb08..e175cfe 100644 (file)
@@ -37,7 +37,7 @@ class GetTicket(Method):
         Parameter(type([]), "List of user information")  
         ]
 
-    returns = Parameter(str, "String represeneation of a ticket object")
+    returns = Parameter(str, "String representation of a ticket object")
     
     def call(self, xrn, creds, rspec, users):
         hrn, type = urn_to_hrn(xrn)
@@ -50,7 +50,7 @@ class GetTicket(Method):
 
         manager = self.api.get_interface_manager()
 
-        # flter rspec through sfatables
+        # filter rspec through sfatables
         if self.api.interface in ['aggregate']:
             chain_name = 'OUTGOING'
         elif self.api.interface in ['slicemgr']: