summaryrefslogtreecommitdiffstats
path: root/sshuttle/client.py
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-09-22 12:07:24 +0000
committera1346054 <36859588+a1346054@users.noreply.github.com>2021-09-22 12:36:26 +0000
commitef244a54907e46da376eefe31335f1f5d9b38c63 (patch)
treef2c33ceb35ff4b9533772b8563108b963be1c91c /sshuttle/client.py
parent7fb0f0a81b48831d9a80762e4ebbc1dbd5557862 (diff)
Fix typos
Diffstat (limited to 'sshuttle/client.py')
-rw-r--r--sshuttle/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshuttle/client.py b/sshuttle/client.py
index 23fde6b..6fe9e53 100644
--- a/sshuttle/client.py
+++ b/sshuttle/client.py
@@ -164,7 +164,7 @@ class MultiListener:
try:
self.v4.listen(backlog)
except socket.error as e:
- # on some systems v4 bind will fail if the v6 suceeded,
+ # on some systems v4 bind will fail if the v6 succeeded,
# in this case the v6 socket will receive v4 too.
if e.errno == errno.EADDRINUSE and self.v6:
self.v4 = None