mirror of https://github.com/apache/lucene.git
Allow {svn,lucene}.apache.org links in Changes.html
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1348524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6d43b52cdb
commit
9a6fe90dd2
|
@ -171,7 +171,9 @@ def checkAll(dirName):
|
|||
elif link.find('lucene.apache.org/solr/features.html') != -1:
|
||||
# OK
|
||||
pass
|
||||
elif link.find('svn.apache.org') != -1 or link.find('lucene.apache.org') != -1:
|
||||
elif (link.find('svn.apache.org') != -1
|
||||
or link.find('lucene.apache.org') != -1)\
|
||||
and os.path.basename(fullPath) != 'Changes.html':
|
||||
if not printed:
|
||||
printed = True
|
||||
print
|
||||
|
|
Loading…
Reference in New Issue