sshtunnels: Fix bytes vs str in error reporting
This commit is contained in:
parent
7cd41ab9ea
commit
348b7e092c
|
@ -173,7 +173,7 @@ class _Tunnel(object):
|
|||
if not new:
|
||||
break
|
||||
|
||||
errout += new
|
||||
errout += new.decode()
|
||||
|
||||
return errout
|
||||
|
||||
|
|
Loading…
Reference in New Issue