From 15777aca0e869253937418f45831778485ee2291 Mon Sep 17 00:00:00 2001 From: desaster Date: Fri, 13 Apr 2012 05:58:58 +0000 Subject: [PATCH] Another quick interact fix for Putty git-svn-id: https://kippo.googlecode.com/svn/trunk@219 951d7100-d841-11de-b865-b3884708a8e2 --- kippo/core/interact.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kippo/core/interact.py b/kippo/core/interact.py index e562081..f21d47a 100644 --- a/kippo/core/interact.py +++ b/kippo/core/interact.py @@ -63,8 +63,9 @@ class Interact(telnet.Telnet): ttylog.ttylog_write( self.interacting.ttylog_file, len(bytes), ttylog.TYPE_INTERACT, time.time(), bytes) - recvline.HistoricRecvLine.keystrokeReceived( - self.interacting, bytes, None) + for c in bytes: + recvline.HistoricRecvLine.keystrokeReceived( + self.interacting, c, None) def sessionWrite(self, data): buf, prev = '', ''