diff options
author | Thomas Hansen <thomas.hansen@gmail.com> | 2012-01-31 12:38:41 -0600 |
---|---|---|
committer | Thomas Hansen <thomas.hansen@gmail.com> | 2012-01-31 12:38:41 -0600 |
commit | 5a4df56836e0b974564e321c76f72d0a59cae6b0 (patch) | |
tree | 9ca3020256e65c9f45c560821450e83ae6075d40 /examples | |
parent | 79f1aa0e1ba7dd29bf597beeae924b96950f9416 (diff) | |
download | slixmpp-5a4df56836e0b974564e321c76f72d0a59cae6b0.tar.gz slixmpp-5a4df56836e0b974564e321c76f72d0a59cae6b0.tar.bz2 slixmpp-5a4df56836e0b974564e321c76f72d0a59cae6b0.tar.xz slixmpp-5a4df56836e0b974564e321c76f72d0a59cae6b0.zip |
examples: fix rpc examples. __init__ method was wrongly named "__init" causing proxy and handler class to not be initialized.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/rpc_client_side.py | 4 | ||||
-rw-r--r-- | examples/rpc_server_side.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/rpc_client_side.py b/examples/rpc_client_side.py index ca1084f0..135d6237 100644 --- a/examples/rpc_client_side.py +++ b/examples/rpc_client_side.py @@ -16,7 +16,7 @@ class Thermostat(Endpoint): def FQN(self): return 'thermostat' - def __init(self, initial_temperature): + def __init__(self, initial_temperature): self._temperature = initial_temperature self._event = threading.Event() @@ -50,4 +50,4 @@ def main(): if __name__ == '__main__': main() -
\ No newline at end of file + diff --git a/examples/rpc_server_side.py b/examples/rpc_server_side.py index 0af8af43..d1a11c17 100644 --- a/examples/rpc_server_side.py +++ b/examples/rpc_server_side.py @@ -15,7 +15,7 @@ class Thermostat(Endpoint): def FQN(self): return 'thermostat' - def __init(self, initial_temperature): + def __init__(self, initial_temperature): self._temperature = initial_temperature self._event = threading.Event() @@ -49,4 +49,4 @@ def main(): if __name__ == '__main__': main() -
\ No newline at end of file + |