diff --git a/sshuttle/client.py b/sshuttle/client.py index 20ac10e..60b4ce4 100644 --- a/sshuttle/client.py +++ b/sshuttle/client.py @@ -489,7 +489,7 @@ def _main(tcp_listener, udp_listener, fw, ssh_cmd, remotename, def onroutes(routestr): if auto_nets: for line in routestr.strip().split(b'\n'): - if not line: break + if not line: continue (family, ip, width) = line.split(b',', 2) family = int(family) width = int(width)