deal command data

deal command data
pull/149/head
kelianchun 2016-03-23 12:36:29 +08:00
parent b92c5188d1
commit e6254ddc2c
1 changed files with 4 additions and 4 deletions

View File

@ -370,10 +370,10 @@ class WebTerminalHandler(tornado.websocket.WebSocketHandler):
data = self.term.deal_command(self.term.data)[0:200]
if len(data) > 0:
TtyLog(log=self.log, datetime=datetime.datetime.now(), cmd=data).save()
data = self.term.deal_command(self.term.data)[0:200]
if len(data) > 0:
TtyLog(log=self.log, datetime=datetime.datetime.now(),
cmd=data).save()
else:
data = self.term.deal_command(self.term.data)[0:200]
if len(data) > 0:
TtyLog(log=self.log, datetime=datetime.datetime.now(),cmd=data).save()
self.term.vim_data = ''
self.term.data = ''
self.term.input_mode = False