summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Ancell <robert.ancell@canonical.com>2023-05-30 15:44:03 +1200
committerRobert Ancell <robert.ancell@canonical.com>2023-05-30 15:44:09 +1200
commit1abc1f51b4d1158d12a412fd834452e7b388bb90 (patch)
treea01a857921e47ab45e19aa47f41e9812cdda14d6
parent2ff4fa5c641b49eb9db3a875e57f877f5a890d38 (diff)
Fix typo in class name for dbus.service.Object in example code.
-rw-r--r--dbus/service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/service.py b/dbus/service.py
index 2e13d3c..f817dc4 100644
--- a/dbus/service.py
+++ b/dbus/service.py
@@ -393,7 +393,7 @@ class Object(Interface):
Example::
- class Example(dbus.service.object):
+ class Example(dbus.service.Object):
def __init__(self, object_path):
dbus.service.Object.__init__(self, dbus.SessionBus(), path)
self._last_input = None