From f57f9f764ff5260fa544be2f95a1e2f1e928033f Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 26 Sep 2012 21:59:14 +0200 Subject: [PATCH] minor string type fix in refnanny --- 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 3c73803..136e69b 100644 --- a/Cython/Runtime/refnanny.pyx +++ b/Cython/Runtime/refnanny.pyx @@ -63,7 +63,7 @@ cdef class Context(object): msg += u"\n (%d) acquired on lines: %s" % (count, u", ".join([u"%d" % x for x in linenos])) self.errors.append(msg) if self.errors: - return u"\n".join(['REFNANNY: '+error for error in self.errors]) + return u"\n".join([u'REFNANNY: '+error for error in self.errors]) else: return None -- 2.7.4