summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcclauss <cclauss@bluewin.ch>2018-02-15 09:39:56 +0100
committerBrian May <brian@linuxpenguins.xyz>2018-02-15 21:34:05 +1100
commitfc08fb4086b3438cbe84042903b855c6fb55c30e (patch)
treed2b9b63869f70df84d25ef571133ae498c3e2715
parente82d5a8e7cf105ff49c63a6d81a74e50f06c12ce (diff)
Declare 'verbosity' as global variable to placate linters
-rw-r--r--sshuttle/assembler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sshuttle/assembler.py b/sshuttle/assembler.py
index ad77d8d..7b81ef1 100644
--- a/sshuttle/assembler.py
+++ b/sshuttle/assembler.py
@@ -4,6 +4,7 @@ import imp
z = zlib.decompressobj()
while 1:
+ global verbosity
name = sys.stdin.readline().strip()
if name:
name = name.decode("ASCII")