Commit dbb5ba5a authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed error to the cli when a tunnel is unregistered twice

parent 1811119c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -808,6 +808,9 @@ class CliClient(Client):
        return self._tunnels[label]

    def unregister_tunnel(self, label):
        try:
            del self._tunnels[label]
        except KeyError:
            pass

Client.register_client_class(CliClient)