This commit is contained in:
creslinux
2018-07-29 08:10:55 +00:00
parent fc06d028b8
commit 1e804c0df5
2 changed files with 6 additions and 3 deletions

View File

@@ -114,7 +114,8 @@ class Exchange(object):
if api.urls.get('test'):
api.urls['api'] = api.urls['test']
else:
logger.warning(self, "No Sandbox URL in CCXT, exiting. Please check your config.json")
logger.warning(self, "No Sandbox URL in CCXT, exiting. "
"Please check your config.json")
raise OperationalException(f'Exchange {name} does not provide a sandbox api')
def validate_pairs(self, pairs: List[str]) -> None: