You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/04/25 21:24:05 UTC

svn commit: r1330501 - /lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py

Author: mikemccand
Date: Wed Apr 25 19:24:05 2012
New Revision: 1330501

URL: http://svn.apache.org/viewvc?rev=1330501&view=rev
Log:
remove BUG prefix on error

Modified:
    lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py

Modified: lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py?rev=1330501&r1=1330500&r2=1330501&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/checkJavadocLinks.py Wed Apr 25 19:24:05 2012
@@ -68,7 +68,7 @@ class FindHyperlinks(HTMLParser):
           # LUCENE-4010: AttributeSource's javadocs has an unescaped <A> generics!!  Seems to be a javadocs bug... (fixed in Java 7)
           pass
         else:
-          raise RuntimeError('BUG: couldn\'t find an href nor name in link in %s: only got these attrs: %s' % (self.baseURL, attrs))
+          raise RuntimeError('couldn\'t find an href nor name in link in %s: only got these attrs: %s' % (self.baseURL, attrs))
 
   def printFile(self):
     if not self.printed: