[Epydoc-commits] SF.net SVN: epydoc: [1280] trunk/epydoc/src/epydoc/apidoc.py
Brought to you by:
edloper
From: <ed...@us...> - 2006-08-21 14:13:19
|
Revision: 1280 Author: edloper Date: 2006-08-21 07:13:15 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1280&view=rev Log Message: ----------- - Fixed a but in pyval_repr (failed when given a tuple value.) Modified Paths: -------------- trunk/epydoc/src/epydoc/apidoc.py Modified: trunk/epydoc/src/epydoc/apidoc.py =================================================================== --- trunk/epydoc/src/epydoc/apidoc.py 2006-08-21 14:05:00 UTC (rev 1279) +++ trunk/epydoc/src/epydoc/apidoc.py 2006-08-21 14:13:15 UTC (rev 1280) @@ -725,7 +725,7 @@ if self.pyval is UNKNOWN: return UNKNOWN try: - s = '%r' % self.pyval + s = '%r' % (self.pyval,) if isinstance(s, str): s = decode_with_backslashreplace(s) return s This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |