[pypy-svn] r41828 - pypy/dist/pypy/lib

arigo at codespeak.net arigo at codespeak.net
Mon Apr 2 22:13:03 CEST 2007


Author: arigo
Date: Mon Apr  2 22:13:01 2007
New Revision: 41828

Modified:
   pypy/dist/pypy/lib/_formatting.py
Log:
A completely essential bug now fixed.  Yippee!


Modified: pypy/dist/pypy/lib/_formatting.py
==============================================================================
--- pypy/dist/pypy/lib/_formatting.py	(original)
+++ pypy/dist/pypy/lib/_formatting.py	Mon Apr  2 22:13:01 2007
@@ -173,7 +173,7 @@
 
 class PercentFormatter(Formatter):
     def format(self):
-        return '%'
+        return self.std_wp('%')
 
 # isinf isn't too hard...
 def isinf(v):



More information about the Pypy-commit mailing list