From 2e931298aeec6afc89ed8302ac22b73a4e477a08 Mon Sep 17 00:00:00 2001 From: lf Date: Thu, 15 Jun 2017 22:32:40 -0500 Subject: [PATCH] Typo fix assing -> assign --- pydbus/proxy_signal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydbus/proxy_signal.py b/pydbus/proxy_signal.py index c9a0169..906502a 100644 --- a/pydbus/proxy_signal.py +++ b/pydbus/proxy_signal.py @@ -32,7 +32,7 @@ def __init__(self, signal): self.signal = signal self.__name__ = "on" + signal.__name__ self.__qualname__ = signal._iface_name + "." + self.__name__ - self.__doc__ = "Assign a callback to subscribe to the signal. Assing None to unsubscribe. Callback: (" + ", ".join(signal._args) + ")" + self.__doc__ = "Assign a callback to subscribe to the signal. Assign None to unsubscribe. Callback: (" + ", ".join(signal._args) + ")" def __get__(self, instance, owner): if instance is None: