Commit 101b3eb5 authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bug in TunnelProtocol when peer doesn't want more data

parent a66b93d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ class TunnelProtocol(Protocol):
        """
        # Abort if peer don't want more data:
        if self._ok_to_send <= 0:
            watcher.stop
            watcher.stop()
            return

        try: