[svn] commit: r1737 - /branches/trac149/src/bin/bindctl/exception.py
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Apr 19 20:29:03 UTC 2010
Author: jreed
Date: Mon Apr 19 20:29:02 2010
New Revision: 1737
Log:
Fix typo in error message.
No review. Obvious misspelling.
Note that the error message itself could be improved.
Modified:
branches/trac149/src/bin/bindctl/exception.py
Modified: branches/trac149/src/bin/bindctl/exception.py
==============================================================================
--- branches/trac149/src/bin/bindctl/exception.py (original)
+++ branches/trac149/src/bin/bindctl/exception.py Mon Apr 19 20:29:02 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