Fix typo / word repetition

This commit is contained in:
Matthias 2018-10-06 09:23:40 +02:00
parent ce4f0696e1
commit 1d38c35e6a
2 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ class Configuration(object):
if 'ccxt_rate_limit' in config.get('exchange', {}):
logger.warning("`ccxt_rate_limit` has been deprecated in favor of "
"`ccxt_config` and `ccxt_async_config` and will be removed "
"in future a future version.")
"in a future version.")
logger.debug('Exchange "%s" supported', exchange)
return True

View File

@ -398,7 +398,7 @@ def test_check_exchange(default_conf, caplog) -> None:
configuration.check_exchange(default_conf)
assert log_has("`ccxt_rate_limit` has been deprecated in favor of "
"`ccxt_config` and `ccxt_async_config` and will be removed "
"in future a future version.",
"in a future version.",
caplog.record_tuples)