aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-23 11:59:00 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-23 11:59:00 -0400
commit512d81bc79e5d36c3eba22ed9dae1359bf0d2773 (patch)
tree2b1e85cac42c34fb90fe93893cbaaef7905447bc
parent95571edd6e1734a1628916b73d15ab3eda37186b (diff)
downloadpython-termcast-server-512d81bc79e5d36c3eba22ed9dae1359bf0d2773.tar.gz
python-termcast-server-512d81bc79e5d36c3eba22ed9dae1359bf0d2773.zip
oops
-rw-r--r--ssh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.py b/ssh.py
index 7eb5aa7..4f66727 100644
--- a/ssh.py
+++ b/ssh.py
@@ -111,9 +111,9 @@ class Connection(object):
return
if not self.initialized:
- print("sending %d bytes", len(prev_buf))
+ print("sending %d bytes" % len(prev_buf))
sent = self.chan.send(prev_buf)
- print("successfully sent %d bytes", sent)
+ print("successfully sent %d bytes" % sent)
self.initialized = True
self.chan.send(data)