aboutsummaryrefslogtreecommitdiffstats
path: root/ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.py')
-rw-r--r--ssh.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh.py b/ssh.py
index 52c9056..127f1d7 100644
--- a/ssh.py
+++ b/ssh.py
@@ -23,7 +23,8 @@ class Connection(object):
# XXX need to have the user select a stream, and then pass the stream's
# id in here
- self.publisher.publish("new_viewer", chan, "some-random-id")
+ contents = self.publisher.request_one("new_viewer", "some-random-id")
+ chan.send(contents)
time.sleep(5)
chan.close()