]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
* python/service.py (ObjectType::_reflect_on_signal): Always close
authorJohn (J5) Palmieri <johnp@redhat.com>
Thu, 13 Oct 2005 23:26:00 +0000 (23:26 +0000)
committerJohn (J5) Palmieri <johnp@redhat.com>
Thu, 13 Oct 2005 23:26:00 +0000 (23:26 +0000)
signal tag even when there are no arguments

ChangeLog
python/service.py

index f172bb8899d4a284d0122712f05c7156e7717e8a..9e3da63c43b232ac5bc7007186ff1399bc1320ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
 
-       * (configure.in) Set mono, mono-docs and Qt3 to default
+       * python/service.py (ObjectType::_reflect_on_signal): Always close
+       signal tag even when there are no arguments
+
+2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
+
+       * configure.in: Set mono, mono-docs and Qt3 to default
        to no instead of auto when building.  These bindings do not
        have full time maintainers and will not be supported for the
        1.0 release.
index ae3e3b1c327d95b8744abdcf1b106309f401d271..efdda12d91aa115328fa53edb30da69cafa4494f 100644 (file)
@@ -143,7 +143,7 @@ class ObjectType(type):
             reflection_data = reflection_data + '      <arg name="%s" type="v" />\n'%(arg)
             #reclaim some memory
             func._dbus_args = None
-            reflection_data = reflection_data + '    </signal>\n'
+        reflection_data = reflection_data + '    </signal>\n'
 
         return reflection_data