mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-04-03 13:20:54 +02:00
Fix line length for CI.
This commit is contained in:
parent
1f5ed9c66e
commit
55bd78fd43
@ -41,7 +41,9 @@ class Method(BaseMethod):
|
|||||||
in sorted(subnets, key=subnet_weight, reverse=True):
|
in sorted(subnets, key=subnet_weight, reverse=True):
|
||||||
tcp_ports = ('ip', 'protocol', 'tcp')
|
tcp_ports = ('ip', 'protocol', 'tcp')
|
||||||
if fport and fport != lport:
|
if fport and fport != lport:
|
||||||
tcp_ports = tcp_ports + ('tcp', 'dport', '{ %d-%d }' % (fport, lport))
|
tcp_ports = \
|
||||||
|
tcp_ports + \
|
||||||
|
('tcp', 'dport', '{ %d-%d }' % (fport, lport))
|
||||||
elif fport and fport == lport:
|
elif fport and fport == lport:
|
||||||
tcp_ports = tcp_ports + ('tcp', 'dport', '%d' % (fport))
|
tcp_ports = tcp_ports + ('tcp', 'dport', '%d' % (fport))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user