Skip to content

Commit

Permalink
Merge pull request #61 from lf-/patch-1
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
LEW21 authored May 6, 2018
2 parents b1cec3f + 2e93129 commit cc407c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydbus/proxy_signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cc407c8

Please sign in to comment.