0

Changed "worldname" to "world" in configfile

Also brought tests up to date. All tests pass now.
This commit is contained in:
Andrew Brown
2012-02-14 20:39:05 -05:00
parent f3b434a327
commit aaf8e1d7cb
10 changed files with 81 additions and 57 deletions

View File

@@ -188,3 +188,8 @@ def make_configDictValidator(config, ignore_undefined=False):
return newdict
return configDictValidator
def error(errstr):
def validator(_):
raise ValidationException(errstr)
return validator