From: Mohamed Larabi Date: Thu, 6 Dec 2012 16:37:47 +0000 (+0100) Subject: correcting sfi add/update usage and help X-Git-Tag: sfa-2.1-21~4 X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=f41f43e1a3961330cf62be7dec1904b3f3afa618 correcting sfi add/update usage and help --- diff --git a/sfa/client/sfi.py b/sfa/client/sfi.py index 30d6074a..95795ee9 100644 --- a/sfa/client/sfi.py +++ b/sfa/client/sfi.py @@ -328,8 +328,8 @@ class Sfi: ("version", ""), ("list", "authority"), ("show", "name"), - ("add", "record"), - ("update", "record"), + ("add", "[record]"), + ("update", "[record]"), ("remove", "name"), ("slices", ""), ("resources", "[slice_hrn]"), @@ -931,7 +931,7 @@ or version information about sfi itself return def add(self, options, args): - "add record into registry from xml file (Register)" + "add record into registry by using the command options (Recommended) or from xml file (Register)" auth_cred = self.my_authority_credential_string() if options.show_credential: show_credentials(auth_cred) @@ -956,7 +956,7 @@ or version information about sfi itself return self.registry().Register(record_dict, auth_cred) def update(self, options, args): - "update record into registry from xml file (Update)" + "update record into registry by using the command options (Recommended) or from xml file (Update)" record_dict = {} if len(args) > 0: record_filepath = args[0]