[svn] commit: r124 - /experiments/likun-bigtool/lib/bigtool.py

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Oct 27 20:59:53 UTC 2009


Author: jreed
Date: Tue Oct 27 20:59:53 2009
New Revision: 124

Log:
Fix typo in comment, help output and parsed output.

Modified:
    experiments/likun-bigtool/lib/bigtool.py

Modified: experiments/likun-bigtool/lib/bigtool.py
==============================================================================
--- experiments/likun-bigtool/lib/bigtool.py (original)
+++ experiments/likun-bigtool/lib/bigtool.py Tue Oct 27 20:59:53 2009
@@ -8,7 +8,7 @@
 
 CONST_BIGTOOL_HELP = """Bigtool, verstion 0.1
 usage: <module name> <command name> [param1 = value1 [, param2 = value2]]
-Type Tab character to get the hint of module/command/paramters.
+Type Tab character to get the hint of module/command/parameters.
 Type \"help(? h)\" for help on bigtool.
 Type \"<module_name> help\" for help on the specific module.
 Type \"<module_name> <command_name> help\" for help on the specific command.
@@ -42,7 +42,7 @@
                 manda_params.append(inst_name)
                 all_params.append(inst_name)
         
-        # If help is inputed, don't do further paramters validation.
+        # If help is inputed, don't do further parameters validation.
         for val in cmd.params.keys():
             if val == "help":
                 return
@@ -208,7 +208,7 @@
     
     def _temp_print_parse_result(self, cmd):
         print("command line is parsed:\nmodule_name: %s\ncommand_name: %s\n"\
-              "paramters:" % (cmd.module, cmd.command))
+              "parameters:" % (cmd.module, cmd.command))
               
         for name in cmd.params.keys():            
             print("\t%s \t%s" % (name, cmd.params[name]))
@@ -230,4 +230,4 @@
         
             
             
-            
+            




More information about the bind10-changes mailing list