[pypy-commit] pypy faulthandler: fix

arigo pypy.commits at gmail.com
Sat Oct 1 05:54:40 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: faulthandler
Changeset: r87492:fbb4fa5a6d49
Date: 2016-10-01 11:17 +0200
http://bitbucket.org/pypy/pypy/changeset/fbb4fa5a6d49/

Log:	fix

diff --git a/pypy/module/faulthandler/handler.py b/pypy/module/faulthandler/handler.py
--- a/pypy/module/faulthandler/handler.py
+++ b/pypy/module/faulthandler/handler.py
@@ -24,7 +24,7 @@
 
     def check_err(self, p_err):
         if p_err:
-            raise oefmt(self.space.w_RuntimeError, 'faulthandler: %8',
+            raise oefmt(self.space.w_RuntimeError, 'faulthandler: %s',
                         rffi.charp2str(p_err))
 
     def get_fileno_and_file(self, w_file):


More information about the pypy-commit mailing list