summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorChui Tey <chui.tey@advdata.com.au>2002-05-14 23:45:14 (GMT)
committerChui Tey <chui.tey@advdata.com.au>2002-05-14 23:45:14 (GMT)
commit55956c93615855b47cfc5bf9ddc2633a5f73044c (patch)
tree3eb1b7eaa6b55045ee7b8fc5062596a3c02c0ca9 /Lib/idlelib
parent9aa97e835d8994c4369b4e395f8f49fd59263dec (diff)
downloadcpython-55956c93615855b47cfc5bf9ddc2633a5f73044c.zip
cpython-55956c93615855b47cfc5bf9ddc2633a5f73044c.tar.gz
cpython-55956c93615855b47cfc5bf9ddc2633a5f73044c.tar.bz2
Fixed bug: Split RPC message into two parts instead of three
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/RemoteInterp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/RemoteInterp.py b/Lib/idlelib/RemoteInterp.py
index 724997c..fea78b5 100644
--- a/Lib/idlelib/RemoteInterp.py
+++ b/Lib/idlelib/RemoteInterp.py
@@ -121,7 +121,7 @@ class CommandProtocol:
def _decode_msg(self, msg):
seqno = self.decode_seqno(msg[:self.SEQNO_ENC_LEN])
msg = msg[self.SEQNO_ENC_LEN:]
- parts = msg.split(" ", 2)
+ parts = msg.split(" ", 1)
if len(parts) == 1:
cmd = msg
arg = ''