diff -ur v4/chat_conn.py v5/chat_conn.py --- v4/chat_conn.py Tue Aug 13 22:46:56 2019 +++ v5/chat_conn.py Sat Aug 31 14:18:00 2019 @@ -407,13 +407,6 @@ if not r: continue (f, s) = r - ''' - if s.endswith(cli.name): - cmd_io.func_out_me( s[:len(cli.name)] ) - if f: - s = '{}> {}'.format(f, s) - cmd_io.func_out(s) - ''' cmd_io.func_out(f, s, cli.name) th_quit.set() @@ -454,7 +447,7 @@ else: cmd_exec( '{}> {}'.format(f, s), cmd ) else: - print(s) + print( '{}> {}'.format(f, s) ) return Empty( locals() )