1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

fix string after removing fstring

fix string after removing fstring
This commit is contained in:
Ryan Callahan 2021-04-12 18:51:04 -04:00
parent 88f481098d
commit 8c5386deb6
No known key found for this signature in database
GPG Key ID: 1EA116782D6C6338

View File

@ -15,4 +15,4 @@ Please visit https://rvm.io/integration/gnome-terminal/ for an example."""
def get_new_command(command):
args = command.script_parts
return 'rvm install \"ruby-' + {args[2]} + '\"; rvm use {args[2]}'
return 'rvm install \"ruby-' + args[2] + '\"; rvm use ' + args[2]