From: Stefan Behnel Date: Wed, 26 Sep 2012 19:59:14 +0000 (+0200) Subject: minor string type fix in refnanny X-Git-Tag: 0.18b1~219 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f57f9f764ff5260fa544be2f95a1e2f1e928033f;p=platform%2Fupstream%2Fpython-cython.git minor string type fix in refnanny --- 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