summaryrefslogtreecommitdiff
path: root/giscanner/ast.py
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@litl.com>2011-08-13 12:45:12 -0300
committerJohan Dahlin <jdahlin@litl.com>2011-08-13 12:45:12 -0300
commita8b700e2d9c7b63bd351f4194820680f4da3da8a (patch)
tree83279b00537e93569f942f32d673ab2d0d64baf1 /giscanner/ast.py
parentd7a2b1dc90bd61bcd0908c3fd8b124bb84ecc862 (diff)
downloadgobject-introspection-a8b700e2d9c7b63bd351f4194820680f4da3da8a.tar.gz
Make sure signal works when there isn't one specified
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 2b1c6f58..d63fdb88 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -874,7 +874,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)