summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert McQueen <robot101@debian.org>2005-12-06 12:38:07 +0000
committerRobert McQueen <robot101@debian.org>2005-12-06 12:38:07 +0000
commitfa839632c4409eb95adfcac2bd4f50fc9c106556 (patch)
treee54f189e18bf46517944c62c6f1e6b3954f1a12d
parent11f75c69e726e17947f915c5ef7275355cb14ac3 (diff)
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.
-rw-r--r--ChangeLog5
-rw-r--r--python/service.py8
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 15a21f45..59a3f829 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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
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: