Commit eb65d59d authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

Handle ^] to quit from rshell and console commands

parent 89d702f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ class FakeTtySocket(object):
        data =  os.read(0, size)
        if "\x1d" in data:
            # we need to raise a IOError to make sjrpc end the connection
            raise IOError()
            raise IOError("Connexion cancelled by user")
        return data

    def send(self, data):