summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2011-08-15 10:33:06 -0400
committerJohn (J5) Palmieri <johnp@redhat.com>2011-08-15 10:33:06 -0400
commit1751c105dc22048ce8dcc7ae67f7fca7a0f2af0c (patch)
tree4ed71526aefa0221d72f5a8e50664c7619761005
parent45fd6f6af66e770b6205a65de11982efa5e2cca0 (diff)
downloadgobject-introspection-1751c105dc22048ce8dcc7ae67f7fca7a0f2af0c.tar.gz
treat constructors like methods when generating the label
-rw-r--r--giscanner/mallardwriter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/mallardwriter.py b/giscanner/mallardwriter.py
index 3c4d6c9d..3c0f2fd3 100644
--- a/giscanner/mallardwriter.py
+++ b/giscanner/mallardwriter.py
@@ -265,7 +265,7 @@ class MallardFormatterPython(MallardFormatter):
if isinstance(node, ast.Namespace):
return "%s Documentation" % node.name
elif isinstance(node, ast.Function):
- if node.is_method:
+ if node.is_method and node.is_constructor:
return "%s.%s.%s" % (node.namespace.name, parent.name, node.name)
else:
return "%s.%s" % (node.namespace.name, node.name)