Author: Armin Rigo <ar...@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):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to