From f856a43481db9b7cf87d6e51f7110ea54fee7751 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Fri, 15 Oct 2010 08:24:32 -0700 Subject: [PATCH] Pyrex -> Cython in error message. --- Cython/Compiler/Errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Errors.py b/Cython/Compiler/Errors.py index a492e5bb..0f3031b8 100644 --- a/Cython/Compiler/Errors.py +++ b/Cython/Compiler/Errors.py @@ -39,7 +39,7 @@ def format_error(message, position): if position: pos_str = format_position(position) cont = context(position) - message = u'\nError converting Pyrex file to C:\n%s\n%s%s' % (cont, pos_str, message or u'') + message = u'\nError compiling Cython file:\n%s\n%s%s' % (cont, pos_str, message or u'') return message class CompileError(PyrexError): -- 2.26.2