summaryrefslogtreecommitdiff
path: root/portato.py
diff options
context:
space:
mode:
Diffstat (limited to 'portato.py')
-rwxr-xr-xportato.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/portato.py b/portato.py
index 603e23d..e318411 100755
--- a/portato.py
+++ b/portato.py
@@ -75,13 +75,13 @@ def main ():
try:
etree.XMLSchema(file = XSD_LOCATION).assertValid(etree.parse(options.validate))
except etree.XMLSyntaxError, e:
- print _("Verification failed. XML syntax error: %s.") % e[0]
+ print _("Validation failed. XML syntax error: %s.") % e[0]
sys.exit(3)
except etree.DocumentInvalid:
- print _("Verification failed. Does not comply with schema.")
+ print _("Validation failed. Does not comply with schema.")
sys.exit(3)
else:
- print _("Verification succeeded.")
+ print _("Validation succeeded.")
return
else:
run()