Commit 9691ec46 authored by Stefan Behnel's avatar Stefan Behnel

cleanup

parent 141c58f0
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment