]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph: finish changing bestsigs to bestcmds
authorDan Mick <dan.mick@inktank.com>
Wed, 29 May 2013 02:07:14 +0000 (19:07 -0700)
committerDan Mick <dan.mick@inktank.com>
Tue, 4 Jun 2013 00:30:41 +0000 (17:30 -0700)
Signed-off-by: Dan Mick <dan.mick@inktank.com>
src/ceph

index 45e091ae4a8173bdeccc01deb652c2f9fda1e76c..f93acf90f9b0b380273c8a8581b3f91d419a5a8d 100755 (executable)
--- a/src/ceph
+++ b/src/ceph
@@ -982,7 +982,7 @@ def validate_command(parsed_args, sigdict, args):
         # determined in our callers, so it's ok to remove it here.
         if args[0] == 'tell':
             args = args[2:]
-        # look for best match, accumulate possibles in bestsigs
+        # look for best match, accumulate possibles in bestcmds
         # (so we can maybe give a more-useful error message)
         best_match_cnt = 0
         bestcmds = []
@@ -1004,9 +1004,9 @@ def validate_command(parsed_args, sigdict, args):
                 bestcmds.append({cmdtag:cmd})
 
         if verbose:
-            print >> sys.stderr, "bestsigs: ", bestsigs
+            print >> sys.stderr, "bestcmds: ", bestcmds
 
-        # for everything in bestsigs, look for a true match
+        # for everything in bestcmds, look for a true match
         for cmdsig in bestcmds:
             for cmd in cmdsig.itervalues():
                 sig = cmd['sig']
@@ -1250,7 +1250,7 @@ def complete(sigdict, args, target):
     # determined in our callers, so it's ok to remove it here.
     if len(args) and args[0] == 'tell':
         args = args[2:]
-    # look for best match, accumulate possibles in bestsigs
+    # look for best match, accumulate possibles in bestcmds
     # (so we can maybe give a more-useful error message)
     best_match_cnt = 0
     bestcmds = []