Browse Source

Fix typo in error message.

No review. Obvious misspelling.

Note that the error message itself could be improved.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1739 e5f2f494-b856-4b98-b285-d166d9295462
Jeremy C. Reed 15 years ago
parent
commit
6340cde13b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/bindctl/exception.py

+ 2 - 2
src/bin/bindctl/exception.py

@@ -31,7 +31,7 @@ class CmdModuleNameFormatError(CmdFormatError):
     """module name format error"""
 
     def __str__(self):
-        return "Module name format error: the charater of name can only be '0-9a-zA-Z_'" 
+        return "Module name format error: the character of name can only be '0-9a-zA-Z_'" 
                       
                 
 class CmdCommandNameFormatError(CmdFormatError):
@@ -41,7 +41,7 @@ class CmdCommandNameFormatError(CmdFormatError):
         self.module = module        
         
     def __str__(self):
-        return "Command name format error: the charater of name can only be '0-9a-zA-Z_'"      
+        return "Command name format error: the character of name can only be '0-9a-zA-Z_'"      
         
         
 class CmdMissCommandNameFormatError(CmdFormatError):