From 0c343e68025e5b16f8b73d18e2b42bb4db78dec7 Mon Sep 17 00:00:00 2001 From: Schurck Date: Thu, 18 Feb 2021 00:58:08 +0100 Subject: [PATCH] update a sentence --- tradoge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tradoge.py b/tradoge.py index b2ec7c6..f8c9b32 100644 --- a/tradoge.py +++ b/tradoge.py @@ -102,7 +102,7 @@ def setup(config_obj, client): 'name': 'buying_mode', 'message': 'How do you want to buy ?', 'choices': [ - 'Buy DOGE with a capped dollar amount', + 'Buy DOGE with a fixed dollar amount', 'Buy a fixed DOGE amount', ] } @@ -137,7 +137,7 @@ def setup(config_obj, client): answers = prompt(setup_questions) if answers['trading_pair'] == 'USDT' or answers['trading_pair'] == 'BUSD': answers_mode=prompt(setup_questions_buying_mode) - if answers_mode['buying_mode'] == 'Buy DOGE with a capped dollar amount': + if answers_mode['buying_mode'] == 'Buy DOGE with a fixed dollar amount': answers['buying_mode'] = 'USD' answers2 = prompt(setup_questions_USD) elif answers_mode['buying_mode'] == 'Buy a fixed DOGE amount':