[Epydoc-commits] SF.net SVN: epydoc: [1182] trunk/epydoc/src/epydoc/docbuilder.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-04-07 01:04:46
|
Revision: 1182 Author: edloper Date: 2006-04-06 18:04:42 -0700 (Thu, 06 Apr 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1182&view=rev Log Message: ----------- - Minor change to logging message Modified Paths: -------------- trunk/epydoc/src/epydoc/docbuilder.py Modified: trunk/epydoc/src/epydoc/docbuilder.py =================================================================== --- trunk/epydoc/src/epydoc/docbuilder.py 2006-04-07 01:04:16 UTC (rev 1181) +++ trunk/epydoc/src/epydoc/docbuilder.py 2006-04-07 01:04:42 UTC (rev 1182) @@ -736,7 +736,7 @@ # If they are incompatible, then check the precedence. elif introspect_doc.posargs != parse_doc.posargs: - log.info("Warning: Not merging the parsed & introspected arg " + log.info("Not merging the parsed & introspected arg " "lists for %s, since they don't match (%s vs %s)" % (path, introspect_doc.posargs, parse_doc.posargs)) if (MERGE_PRECEDENCE.get('posargs', DEFAULT_MERGE_PRECEDENCE) == @@ -831,7 +831,7 @@ # If the lengths don't match up, then give up. This is most # often caused by __metaclass__. if len(baselist1) != len(baselist2): - log.info("Warning: Not merging the introspected & parsed base lists " + log.info("Not merging the introspected & parsed base lists " "for %s, since their lengths don't match (%s vs %s)" % (path, len(baselist1), len(baselist2))) if precedence == 'introspect': return baselist1 @@ -842,7 +842,7 @@ if ((base1.canonical_name not in (None, UNKNOWN) and base2.canonical_name not in (None, UNKNOWN)) and base1.canonical_name != base2.canonical_name): - log.info("Warning: Not merging the parsed & introspected base " + log.info("Not merging the parsed & introspected base " "lists for %s, since the bases' names don't match " "(%s vs %s)" % (path, base1.canonical_name, base2.canonical_name)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |