summaryrefslogtreecommitdiffstats
path: root/sshuttle/client.py
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2020-05-21 07:26:45 +1000
committerBrian May <brian@linuxpenguins.xyz>2020-05-21 08:12:26 +1000
commitb63e58f49440fe98b4f17427b1d455c5f229da2e (patch)
treee01865f25104f2a0294456d7906ca261749ad7f3 /sshuttle/client.py
parent88ce5c0bca950729105a9814679c7acf92a76123 (diff)
Create github workflow
Diffstat (limited to 'sshuttle/client.py')
-rw-r--r--sshuttle/client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshuttle/client.py b/sshuttle/client.py
index 1f930ae..eebc0d8 100644
--- a/sshuttle/client.py
+++ b/sshuttle/client.py
@@ -224,7 +224,7 @@ class FirewallClient:
# No env: Talking to `FirewallClient.start`, which has no i18n.
e = None
break
- except OSError as e:
+ except OSError:
pass
self.argv = argv
s1.close()
@@ -304,8 +304,8 @@ class FirewallClient:
raise Fatal('%r expected STARTED, got %r' % (self.argv, line))
def sethostip(self, hostname, ip):
- assert(not re.search(b'[^-\w\.]', hostname))
- assert(not re.search(b'[^0-9.]', ip))
+ assert(not re.search(rb'[^-\w\.]', hostname))
+ assert(not re.search(rb'[^0-9.]', ip))
self.pfile.write(b'HOST %s,%s\n' % (hostname, ip))
self.pfile.flush()