[svn] commit: r1739 - /trunk/src/bin/bindctl/exception.py
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Apr 19 21:16:08 UTC 2010
Author: jreed
Date: Mon Apr 19 21:16:08 2010
New Revision: 1739
Log:
Fix typo in error message.
No review. Obvious misspelling.
Note that the error message itself could be improved.
Modified:
trunk/src/bin/bindctl/exception.py
Modified: trunk/src/bin/bindctl/exception.py
==============================================================================
--- trunk/src/bin/bindctl/exception.py (original)
+++ trunk/src/bin/bindctl/exception.py Mon Apr 19 21:16:08 2010
@@ -31,7 +31,7 @@
"""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 @@
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):
More information about the bind10-changes
mailing list