Skip to content

Commit

Permalink
Merge pull request freqtrade#2141 from ahonnecke/fstring-runtime
Browse files Browse the repository at this point in the history
f the string
  • Loading branch information
xmatthias authored Aug 15, 2019
2 parents 93cf2cd + fd77f69 commit 80a7132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/configuration/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def _process_runmode(self, config: Dict[str, Any]) -> None:
if not self.runmode:
# Handle real mode, infer dry/live from config
self.runmode = RunMode.DRY_RUN if config.get('dry_run', True) else RunMode.LIVE
logger.info("Runmode set to {self.runmode}.")
logger.info(f"Runmode set to {self.runmode}.")

config.update({'runmode': self.runmode})

Expand Down

0 comments on commit 80a7132

Please sign in to comment.