summaryrefslogtreecommitdiff
path: root/giscanner/ast.py
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@litl.com>2011-08-13 12:45:12 -0300
committerTomeu Vizoso <tomeu.vizoso@collabora.co.uk>2011-08-13 19:03:34 +0200
commitc3a1333790dd1c25c2e19b80be84f6c8a84c91d6 (patch)
tree146b3a417c0b33f7dac40f79beb53da56cb4a2c0 /giscanner/ast.py
parentafb508ed41233b1cf56b685ba99bbf7c0c727345 (diff)
downloadgobject-introspection-gir-docbook.tar.gz
Make sure signal works when there isn't one specifiedgir-docbook
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r--giscanner/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index bf1ab976..c84bfc72 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -864,7 +864,7 @@ class Boxed(Node, Registered):
class Signal(Callable):
- def __init__(self, name, retval, parameters, when="first",
+ def __init__(self, name, retval, parameters, when=None,
no_recurse=False, detailed=False, action=False,
no_hooks=False):
Callable.__init__(self, name, retval, parameters, False)