mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-13 22:30:49 +01:00
Merge pull request #183 from scorphus/fix-type-error-py34
fix(brew_unknown_command): make subprocess.check_output return str
This commit is contained in:
commit
ab97b94faf
@ -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