diff options
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/RemoteInterp.py | 2 |
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 = '' |