summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarian Csontos <mcsontos@redhat.com>2017-05-18 12:52:46 +0200
committerMarian Csontos <mcsontos@redhat.com>2017-05-18 12:52:46 +0200
commit8e99a46d09ef21e9a1741eb333e16aaa08ac50f1 (patch)
tree9e195cab2a13d2b25180139628d841018c0295a3
parent9c651b146ef7be080c5006f94c257e2c9815cd7f (diff)
downloadlvm2-8e99a46d09ef21e9a1741eb333e16aaa08ac50f1.tar.gz
lvmdbusd: Fix missed rename
Introduced By: e53454d6 (2.02.169) Related: RHBZ#1348688
-rw-r--r--daemons/lvmdbusd/automatedproperties.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/lvmdbusd/automatedproperties.py b/daemons/lvmdbusd/automatedproperties.py
index 68cea6e2b..e188fa4d5 100644
--- a/daemons/lvmdbusd/automatedproperties.py
+++ b/daemons/lvmdbusd/automatedproperties.py
@@ -100,7 +100,7 @@ class AutomatedProperties(dbus.service.Object):
raise dbus.exceptions.DBusException(
obj._ap_interface,
'The object %s does not implement the %s interface'
- % (self.__class__, interface_name))
+ % (obj.__class__, interface_name))
@dbus.service.method(dbus_interface=dbus.PROPERTIES_IFACE,
in_signature='s', out_signature='a{sv}',