From: Robert Bradshaw Date: Fri, 15 Oct 2010 15:24:32 +0000 (-0700) Subject: Pyrex -> Cython in error message. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f856a43481db9b7cf87d6e51f7110ea54fee7751;p=cython.git Pyrex -> Cython in error message. --- 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):