#611: Fix python 2 support

This commit is contained in:
Vladimir Iakovlev
2017-03-13 23:26:57 +01:00
parent 2315929875
commit 408cb5fa09
6 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -46,6 +46,6 @@ class Bash(Generic):
config = 'bash config'
return self._create_shell_configuration(
content='eval $(thefuck --alias)',
content=u'eval $(thefuck --alias)',
path=config,
reload=u'source {}'.format(config))