mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-19 01:00:42 +01:00
fix(brew_unknown_command): make subprocess.check_output return str
Fix `TypeError: can't concat bytes to str` error on Python 3.4. Signed-off-by: Pablo Santiago Blum de Aguiar <scorphus@gmail.com>
This commit is contained in:
parent
0fc7c00e8d
commit
484a53e314
@ -12,7 +12,8 @@ TAP_CMD_PATH = '/%s/%s/cmd'
|
|||||||
def _get_brew_path_prefix():
|
def _get_brew_path_prefix():
|
||||||
"""To get brew path"""
|
"""To get brew path"""
|
||||||
try:
|
try:
|
||||||
return subprocess.check_output(['brew', '--prefix']).strip()
|
return subprocess.check_output(['brew', '--prefix'],
|
||||||
|
universal_newlines=True).strip()
|
||||||
except:
|
except:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user