Commit d2f151ed authored by Stefan Behnel's avatar Stefan Behnel

Py3 fix

parent 0a422d40
......@@ -82,7 +82,7 @@ class EmbedSignature(CythonTransform):
def _embed_signature(self, signature, node_doc):
if node_doc:
return signature + '\n' + node_doc
return "%s\n%s" % (signature, node_doc)
else:
return signature
......
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