[gobject-introspection] [doctools] use 'or' instead of 'and' when checking for func or constructor
- From: John Palmieri <johnp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gobject-introspection] [doctools] use 'or' instead of 'and' when checking for func or constructor
- Date: Mon, 15 Aug 2011 14:42:56 +0000 (UTC)
commit 491e7de8a0d27a6d17204ad6d6145cb4e740c38b
Author: John (J5) Palmieri <johnp redhat com>
Date: Mon Aug 15 10:41:50 2011 -0400
[doctools] use 'or' instead of 'and' when checking for func or constructor
giscanner/mallardwriter.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/giscanner/mallardwriter.py b/giscanner/mallardwriter.py
index 3c0f2fd..a71528e 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 and node.is_constructor:
+ if node.is_method or node.is_constructor:
return "%s.%s.%s" % (node.namespace.name, parent.name, node.name)
else:
return "%s.%s" % (node.namespace.name, node.name)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]