From 3bf811bab1168789d8cee1c9924c6dbe094cfb8e Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Fri, 25 Sep 2009 09:11:20 +0200 Subject: [PATCH] Fix refnanny string literal --- Cython/Runtime/refnanny.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2