From 8a1b2fce845801ebe524a58638a2719273698329 Mon Sep 17 00:00:00 2001 From: Jordyn/The Linux Geek Date: Sun, 18 Feb 2018 22:37:42 -0600 Subject: [PATCH] turses: config: Fix capitalization on a print call --- turses/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turses/config.py b/turses/config.py index 2591fc4..f45ffda 100644 --- a/turses/config.py +++ b/turses/config.py @@ -704,7 +704,7 @@ def generate_token_file(self, with open(token_file, 'w') as tokens: conf.write(tokens) - print(encode(_('your account has been saved'))) + print(encode(_('Your account has been saved'))) def parse_config_file(self, config_file): conf = RawConfigParser()