Merge pull request #2141 from ahonnecke/fstring-runtime

f the string
This commit is contained in:
Matthias 2019-08-15 19:33:57 +02:00 committed by GitHub
commit 80a71323cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -278,7 +278,7 @@ class Configuration(object):
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})