Pyrex -> Cython in error message.
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 15 Oct 2010 15:24:32 +0000 (08:24 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 15 Oct 2010 15:24:32 +0000 (08:24 -0700)
Cython/Compiler/Errors.py

index a492e5bb2cf61c24553273063e60c51998c9bf84..0f3031b8e565404e4ad116d05fd658325cb4752d 100644 (file)
@@ -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):