From fa839632c4409eb95adfcac2bd4f50fc9c106556 Mon Sep 17 00:00:00 2001 From: Robert McQueen Date: Tue, 6 Dec 2005 12:38:07 +0000 Subject: 2005-12-06 Robert McQueen * python/service.py: s/sucessful/successful/ so we're allocating to and reading from the same variable. Oops. --- python/service.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/service.py b/python/service.py index ad36e4f5..9148a357 100644 --- a/python/service.py +++ b/python/service.py @@ -99,7 +99,7 @@ def _method_lookup(self, method_name, dbus_interface): 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 @@ -116,7 +116,7 @@ def _method_lookup(self, method_name, dbus_interface): # 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: @@ -128,10 +128,10 @@ def _method_lookup(self, method_name, dbus_interface): 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: -- cgit