Skip to content

Commit

Permalink
Change output text to be validated instead of verified
Browse files Browse the repository at this point in the history
  • Loading branch information
sirnacnud committed Aug 5, 2016
1 parent 2ec36ed commit dfff1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parse-schema-validator/schema_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ def run():
parse_classes, schema_class, command_args.fixInteractive)

if not verified:
print('Failed to verify ' + schema_class['className'])
print('Failed to validate ' + schema_class['className'])
else:
print('Verified ' + schema_class['className'])
print('Validated ' + schema_class['className'])
else:
print('Error: schema file required to verify')
else:
Expand Down

0 comments on commit dfff1a5

Please sign in to comment.