sshtunnels: Fix bytes vs str in error reporting

This commit is contained in:
Cole Robinson 2018-08-22 07:29:52 -04:00
parent 7cd41ab9ea
commit 348b7e092c
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class _Tunnel(object):
if not new:
break
errout += new
errout += new.decode()
return errout