From 9691ec463575be873ee0502e17c35927351ff65d Mon Sep 17 00:00:00 2001
From: Stefan Behnel <scoder@users.berlios.de>
Date: Sat, 10 Apr 2010 19:10:52 +0200
Subject: [PATCH] cleanup

---
 Cython/Compiler/PyrexTypes.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py
index af9c2612..ba0f991a 100755
--- a/Cython/Compiler/PyrexTypes.py
+++ b/Cython/Compiler/PyrexTypes.py
@@ -1850,7 +1850,7 @@ class CppClassType(CType):
     def declaration_code(self, entity_code, for_display = 0, dll_linkage = None, pyrex = 0):
         if self.templates:
             template_strings = [param.declaration_code('', for_display, pyrex) for param in self.templates]
-            templates = "<" + ",".join(template_strings) + ">"
+            templates = "<%s>" % ",".join(template_strings)
         else:
             templates = ""
         if for_display or pyrex:
-- 
2.26.2