1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-31 02:01:13 +00:00

change encoding of return statement to utf8

This commit is contained in:
SanketDG 2015-06-07 00:02:48 +05:30
parent 3d41a3fb7c
commit 6bb7d79ddc

View File

@ -105,7 +105,7 @@ class Fish(Generic):
aliases = self.get_aliases()
binary = command_script.split(' ')[0]
if binary in aliases:
return 'fish -ic "{}"'.format(command_script.replace('"', r'\"'))
return 'fish -ic "{}"'.format(command_script.replace('"', r'\"')).encode('utf8')
else:
return command_script