Remove unnecessary quote escaping

This commit is contained in:
Matthias 2018-08-09 20:13:07 +02:00
parent 3b2f161573
commit b008649d79

View File

@ -44,14 +44,14 @@ class StrategyResolver(object):
# Check if we need to override configuration
if 'minimal_roi' in config:
self.strategy.minimal_roi = config['minimal_roi']
logger.info("Override strategy \'minimal_roi\' with value in config file.")
logger.info("Override strategy 'minimal_roi' with value in config file.")
else:
config['minimal_roi'] = self.strategy.minimal_roi
if 'stoploss' in config:
self.strategy.stoploss = config['stoploss']
logger.info(
"Override strategy \'stoploss\' with value in config file: %s.", config['stoploss']
"Override strategy 'stoploss' with value in config file: %s.", config['stoploss']
)
else:
config['stoploss'] = self.strategy.stoploss
@ -59,7 +59,7 @@ class StrategyResolver(object):
if 'ticker_interval' in config:
self.strategy.ticker_interval = config['ticker_interval']
logger.info(
"Override strategy \'ticker_interval\' with value in config file: %s.",
"Override strategy 'ticker_interval' with value in config file: %s.",
config['ticker_interval']
)
else:
@ -68,7 +68,7 @@ class StrategyResolver(object):
if 'ta_on_candle' in config:
self.strategy.ta_on_candle = config['ta_on_candle']
logger.info(
"Override ta_on_candle \'ta_on_candle\' with value in config file: %s.",
"Override ta_on_candle 'ta_on_candle' with value in config file: %s.",
config['ta_on_candle']
)
else: