Fix typo in name of exception

This commit is contained in:
Rob Crittenden 2009-11-12 17:34:19 -05:00
parent 63c6c12d69
commit 1d1d82fda4

View File

@ -852,7 +852,7 @@ class cli(backend.Executioner):
try:
raw = sys.stdin.read()
except IOError, e:
raise ValidationErro(
raise ValidationError(
name=to_cli(p.cli_name), error=e[1]
)
kw[p.name] = self.Backend.textui.decode(raw)