From: Dag Sverre Seljebotn Date: Fri, 25 Sep 2009 07:11:20 +0000 (+0200) Subject: Fix refnanny string literal X-Git-Tag: 0.11.3.rc0~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3bf811bab1168789d8cee1c9924c6dbe094cfb8e;p=cython.git Fix refnanny string literal --- diff --git a/Cython/Runtime/refnanny.pyx b/Cython/Runtime/refnanny.pyx index 5f278c99..409e8d74 100644 --- a/Cython/Runtime/refnanny.pyx +++ b/Cython/Runtime/refnanny.pyx @@ -61,7 +61,7 @@ class Context(object): cdef void report_unraisable(object e): try: - print "refnanny raised an exception: %s" % e + print u"refnanny raised an exception: %s" % e except: pass # We absolutely cannot exit with an exception