mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-30 14:44:05 +00:00
Merge branch 'encode_fix' of https://github.com/SanketDG/thefuck into SanketDG-encode_fix
This commit is contained in:
@@ -105,7 +105,7 @@ class Fish(Generic):
|
|||||||
aliases = self.get_aliases()
|
aliases = self.get_aliases()
|
||||||
binary = command_script.split(' ')[0]
|
binary = command_script.split(' ')[0]
|
||||||
if binary in aliases:
|
if binary in aliases:
|
||||||
return 'fish -ic "{}"'.format(command_script.replace('"', r'\"'))
|
return 'fish -ic "{}"'.format(command_script.replace('"', r'\"')).encode('utf8')
|
||||||
else:
|
else:
|
||||||
return command_script
|
return command_script
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user