[pypy-svn] r36034 - pypy/dist/pypy/module/bz2

arigo at codespeak.net arigo at codespeak.net
Fri Dec 29 13:22:16 CET 2006


Author: arigo
Date: Fri Dec 29 13:22:15 2006
New Revision: 36034

Modified:
   pypy/dist/pypy/module/bz2/interp_bz2.py
Log:
Remove tabs.


Modified: pypy/dist/pypy/module/bz2/interp_bz2.py
==============================================================================
--- pypy/dist/pypy/module/bz2/interp_bz2.py	(original)
+++ pypy/dist/pypy/module/bz2/interp_bz2.py	Fri Dec 29 13:22:15 2006
@@ -239,7 +239,7 @@
                 if e.match(self.space, self.space.w_EOFError):
                     self.finished = True
                     return ""
-		raise
+                raise
             self.buffer = self.space.str_w(w_read)
         if len(self.buffer) >= n:
             result = self.buffer[:n]



More information about the Pypy-commit mailing list