From 5424e03e9f1c5ed6f99c933cd835c505663abbb6 Mon Sep 17 00:00:00 2001 From: Divya Jain Date: Thu, 14 May 2020 01:50:56 +0530 Subject: [PATCH] Fixed corrector.py format string --- thefuck/corrector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thefuck/corrector.py b/thefuck/corrector.py index 222a1359..d8b3dd15 100644 --- a/thefuck/corrector.py +++ b/thefuck/corrector.py @@ -71,7 +71,7 @@ def organize_commands(corrected_commands): without_duplicates, key=lambda corrected_command: corrected_command.priority) - logs.debug('Corrected commands: '.format( + logs.debug('Corrected commands: {}'.format( ', '.join(u'{}'.format(cmd) for cmd in [first_command] + sorted_commands))) for command in sorted_commands: