Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

⚡️ Added missing word to pair-list error message #256

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion user_data/mgm_tools/mgm_hurry/FreqtradeCli.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def download_static_pairlist(self, stake_currency: str = 'USDT', exchange: str =
last_line = subprocess.check_output(['tail', '-1', temp_file.name])
pair_whitelist = json.loads(last_line)
except json.JSONDecodeError as e:
self.cli_logger.critical(Color.red('Unfortunately we could generate the static pairlist.'))
self.cli_logger.critical(Color.red('Unfortunately we could not generate the static pairlist.'))
self.cli_logger.debug(e)
return False

Expand Down