mirror of https://github.com/apache/lucene.git
fix windows path sep issue
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1337549 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8141aa3005
commit
b831e55acc
|
@ -65,7 +65,7 @@ class FindHyperlinks(HTMLParser):
|
|||
href = href.strip()
|
||||
self.links.append(urlparse.urljoin(self.baseURL, href))
|
||||
else:
|
||||
if self.baseURL.endswith('/AttributeSource.html'):
|
||||
if self.baseURL.endswith(os.path.sep + 'AttributeSource.html'):
|
||||
# LUCENE-4010: AttributeSource's javadocs has an unescaped <A> generics!! Seems to be a javadocs bug... (fixed in Java 7)
|
||||
pass
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue