mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
Fix typos in error messages and comments of dev_tools module.
This commit is contained in:
parent
ebcbe5d4c5
commit
70db1b3c44
5 changed files with 9 additions and 9 deletions
|
@ -77,7 +77,7 @@ if __name__ == "__main__":
|
|||
for root, dirs, files in os.walk(localMavenRepo):
|
||||
for file in files:
|
||||
# no metadata files (they get renamed from maven-metadata-local.xml to maven-metadata.xml while deploying)
|
||||
# no .properties and .repositories files (they dont get uploaded)
|
||||
# no .properties and .repositories files (they don't get uploaded)
|
||||
if not file.startswith('maven-metadata') and not file.endswith('.properties') and not file.endswith('.repositories'):
|
||||
filesToCheck.append(os.path.join(root, file))
|
||||
if file.endswith('.asc'):
|
||||
|
@ -123,7 +123,7 @@ if __name__ == "__main__":
|
|||
print
|
||||
|
||||
if len(errors) != 0:
|
||||
print 'The following errors occured (%s out of %s files)' % (len(errors), len(filesToCheck))
|
||||
print 'The following errors occurred (%s out of %s files)' % (len(errors), len(filesToCheck))
|
||||
print
|
||||
for error in errors:
|
||||
print error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue