mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-03-26 15:26:55 +01: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):
|
||||
tcp_ports = ('ip', 'protocol', 'tcp')
|
||||
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:
|
||||
tcp_ports = tcp_ports + ('tcp', 'dport', '%d' % (fport))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user