Fix another MacOSX/Python3.5 issue.

This commit is contained in:
Brian May 2015-12-06 11:24:11 +11:00
parent bd97506f7d
commit 12d4b304c3

View File

@ -225,7 +225,7 @@ class Method(BaseMethod):
if sys.platform == "darwin":
o = pfctl('-E')
_pf_context['Xtoken'] = \
re.search(r'Token : (.+)', o[1]).group(1)
re.search(b'Token : (.+)', o[1]).group(1)
elif b'INFO:\nStatus: Disabled' in pf_status:
pfctl('-e')
_pf_context['started_by_sshuttle'] = True