* python/service.py: s/sucessful/successful/ so we're allocating to
and reading from the same variable. Oops.
+2005-12-06 Robert McQueen <robot101@debian.org>
+
+ * python/service.py: s/sucessful/successful/ so we're allocating to
+ and reading from the same variable. Oops.
+
2005-11-30 John (J5) Palmieri <johnp@redhat.com>
* Released 0.60
if cls.__dict__[method_name]._dbus_interface == dbus_interface:
candidate_class = cls
parent_method = cls.__dict__[method_name]
- sucessful = True
+ successful = True
break
else:
pass
# the candidate class has a dbus method on the correct interface,
# or overrides a method that is, success!
parent_method = cls.__dict__[method_name]
- sucessful = True
+ successful = True
break
else:
if (candidate_class and method_name in cls.__dict__
and "_dbus_is_method" in cls.__dict__[method_name].__dict__):
parent_method = cls.__dict__[method_name]
- sucessful = True
+ successful = True
break
- if sucessful:
+ if successful:
return (candidate_class.__dict__[method_name], parent_method)
else:
if dbus_interface: